Repository: olingo-odata4 Updated Branches: refs/heads/olingo337 7658c6560 -> f11715442
[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/olingo337 Commit: 263e42802fe2806584b48cde1c040cfd54bf6c41 Parents: 2bd0662 Author: Stephan Klevenz <[email protected]> Authored: Fri Jul 4 08:58:47 2014 +0200 Committer: Stephan Klevenz <[email protected]> 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>
