Skip to content

Commit

Permalink
dependencies and build system updated
Browse files Browse the repository at this point in the history
  • Loading branch information
vardlokkur committed Feb 23, 2014
1 parent d522078 commit 9f7d167
Showing 1 changed file with 48 additions and 8 deletions.
56 changes: 48 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<groupId>pl.ais.commons</groupId>
<artifactId>ais-commons-domain</artifactId>
<version>1.0.3-SNAPSHOT</version>
<version>1.1.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>AIS.PL Commons - Domain</name>
<description>This library provides set of reusable components useful for modeling domain.</description>
Expand Down Expand Up @@ -40,7 +40,7 @@
</developers>

<properties>
<spring.version>3.2.2.RELEASE</spring.version>
<spring.version>4.0.0.RELEASE</spring.version>
</properties>

<build>
Expand All @@ -53,6 +53,40 @@
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>jxr</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<includeTests>true</includeTests>
<rulesets>
<ruleset>${basedir}/pmd-ruleset.xml</ruleset>
</rulesets>
<sourceEncoding>ISO-8859-1</sourceEncoding>
<targetJdk>1.7</targetJdk>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand All @@ -68,19 +102,25 @@
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>16.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit-dep</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.1</version>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
Expand Down

0 comments on commit 9f7d167

Please sign in to comment.