You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by sk...@apache.org on 2014/07/04 08:58:56 UTC

git commit: [OLINGO-328] fix pom error

Repository: olingo-odata4
Updated Branches:
  refs/heads/master 2bd066264 -> 263e42802


[OLINGO-328] fix pom error


Project: http://git-wip-us.apache.org/repos/asf/olingo-odata4/repo
Commit: http://git-wip-us.apache.org/repos/asf/olingo-odata4/commit/263e4280
Tree: http://git-wip-us.apache.org/repos/asf/olingo-odata4/tree/263e4280
Diff: http://git-wip-us.apache.org/repos/asf/olingo-odata4/diff/263e4280

Branch: refs/heads/master
Commit: 263e42802fe2806584b48cde1c040cfd54bf6c41
Parents: 2bd0662
Author: Stephan Klevenz <st...@sap.com>
Authored: Fri Jul 4 08:58:47 2014 +0200
Committer: Stephan Klevenz <st...@sap.com>
Committed: Fri Jul 4 08:58:47 2014 +0200

----------------------------------------------------------------------
 lib/server-tecsvc/pom.xml | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/263e4280/lib/server-tecsvc/pom.xml
----------------------------------------------------------------------
diff --git a/lib/server-tecsvc/pom.xml b/lib/server-tecsvc/pom.xml
index 8d58cd3..b5fb60e 100644
--- a/lib/server-tecsvc/pom.xml
+++ b/lib/server-tecsvc/pom.xml
@@ -50,6 +50,40 @@
 
     <plugins>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>make-a-jar</id>
+            <phase>compile</phase>
+            <goals>
+              <goal>jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-install-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>install</phase>
+            <goals>
+              <goal>install-file</goal>
+            </goals>
+            <configuration>
+              <packaging>jar</packaging>
+              <artifactId>${project.artifactId}</artifactId>
+              <groupId>${project.groupId}</groupId>
+              <version>${project.version}</version>
+              <file>
+                ${project.build.directory}/${project.artifactId}-${project.version}.jar
+              </file>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
         <groupId>com.keyboardsamurais.maven</groupId>
         <artifactId>maven-timestamp-plugin</artifactId>
         <configuration>