aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Eluard <[email protected]>2012-02-02 12:31:15 -0300
committerJulien Eluard <[email protected]>2012-02-02 12:31:15 -0300
commit223a23e317278739cd45aacc04bd82ee7c70189e (patch)
treecf2f9419392f25895400a5f09f2a605f7e74c430
parentaf00d200ff4f7f56ce2121f89b47441a9460f2b9 (diff)
Cleanup. Updated dependencies.
-rwxr-xr-xapi/pom.xml9
-rwxr-xr-xpom.xml106
2 files changed, 10 insertions, 105 deletions
diff --git a/api/pom.xml b/api/pom.xml
index e25ea1a..5580abd 100755
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -18,7 +18,7 @@
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
- <version>1.3.9</version>
+ <version>2.0.0</version>
</dependency>
<dependency>
<groupId>jardiff</groupId>
@@ -28,7 +28,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>4.9</version>
+ <version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
@@ -37,7 +37,7 @@
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
- <version>1.4</version>
+ <version>1.5</version>
<executions>
<execution>
<phase>package</phase>
@@ -60,5 +60,4 @@
</plugins>
</build>
-</project>
-
+</project> \ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 352e3e9..91c98f5 100755
--- a/pom.xml
+++ b/pom.xml
@@ -52,16 +52,8 @@
<url>http://github.com/jeluard/semantic-versioning/issues</url>
</issueManagement>
- <distributionManagement>
- <site>
- <id>gh-pages</id>
- <url>file://${gh-pages-dir}</url>
- </site>
- </distributionManagement>
-
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <gh-pages-dir>/Users/julien/Documents/Projects/semantic-versioning-gh-pages</gh-pages-dir>
</properties>
<build>
@@ -69,7 +61,7 @@
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
- <version>1.8.0</version>
+ <version>1.10.b1</version>
<configuration>
<header>LICENSE</header>
<failIfMissing>true</failIfMissing>
@@ -96,6 +88,7 @@
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
+ <version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
@@ -119,6 +112,7 @@
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.8.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
@@ -129,44 +123,8 @@
</executions>
</plugin>
<plugin>
- <artifactId>maven-site-plugin</artifactId>
- <version>2.1.1</version>
- </plugin>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>1.6</version>
- <executions>
- <execution>
- <phase>site-deploy</phase>
- <id>deploy-gh-pages</id>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <target>
- <tstamp>
- <format property="now" pattern="yyyy-MM-dd hh:mm" />
- </tstamp>
- <exec executable="git" dir="${gh-pages-dir}" failonerror="true">
- <arg line="pull origin gh-pages" />
- </exec>
- <exec executable="git" dir="${gh-pages-dir}" failonerror="true">
- <arg line="add ." />
- </exec>
- <exec executable="git" dir="${gh-pages-dir}" failonerror="true">
- <arg line="commit -a -m 'update gh-pages ${project.version} ${now}'" />
- </exec>
- <exec executable="git" dir="${gh-pages-dir}" failonerror="true">
- <arg line="push origin gh-pages" />
- </exec>
- </target>
- </configuration>
- </plugin>
- <plugin>
<artifactId>maven-release-plugin</artifactId>
- <version>2.1</version>
+ <version>2.2.2</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<preparationGoals>clean install</preparationGoals>
@@ -174,57 +132,5 @@
</plugin>
</plugins>
</build>
-
- <reporting>
- <plugins>
- <plugin>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <version>2.2</version>
- <reportSets>
- <reportSet>
- <reports>
- <report>dependencies</report>
- <report>cim</report>
- <report>issue-tracking</report>
- <report>license</report>
- <report>scm</report>
- </reports>
- </reportSet>
- </reportSets>
- </plugin>
- <plugin>
- <artifactId>maven-javadoc-plugin</artifactId>
- </plugin>
- </plugins>
- </reporting>
-
- <profiles>
- <profile>
- <id>release-sign-artifacts</id>
- <activation>
- <property>
- <name>performRelease</name>
- <value>true</value>
- </property>
- </activation>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-gpg-plugin</artifactId>
- <version>1.1</version>
- <executions>
- <execution>
- <id>sign-artifacts</id>
- <phase>verify</phase>
- <goals>
- <goal>sign</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
-</project>
+
+</project> \ No newline at end of file