[New] added dependency management for additional dependencies:

li.strolch.bom
commons-cli:commons-cli:1.2
This commit is contained in:
Robert von Burg 2013-11-25 23:24:25 +01:00
parent 1cb07f1dd3
commit 33f2bbffa9
1 changed files with 23 additions and 12 deletions

35
pom.xml
View File

@ -111,6 +111,12 @@
<artifactId>li.strolch.service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>li.strolch</groupId>
<artifactId>li.strolch.bom</artifactId>
<type>pom</type>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>ch.eitchnet</groupId>
@ -133,6 +139,11 @@
<artifactId>slf4j-api</artifactId>
<version>1.7.2</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
@ -323,19 +334,19 @@
<!-- mainClass>li.strolch.main.Main</mainClass -->
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<!-- <descriptorRefs> -->
<!-- <descriptorRef>jar-with-dependencies</descriptorRef> -->
<!-- </descriptorRefs> -->
</configuration>
<executions>
<execution>
<id>jar-with-dependencies</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<!-- <executions> -->
<!-- <execution> -->
<!-- <id>jar-with-dependencies</id> -->
<!-- <phase>package</phase> -->
<!-- <goals> -->
<!-- <goal>single</goal> -->
<!-- </goals> -->
<!-- </execution> -->
<!-- </executions> -->
</plugin>
</plugins>