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