Skip to content

Commit 50a1067

Browse files
committed
Updated versions of some Maven dependencies and plugins (+ simplified some redundant plugin configs)
1 parent 36240a9 commit 50a1067

File tree

6 files changed

+14
-23
lines changed

6 files changed

+14
-23
lines changed

Generator/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737
<dependency>
3838
<groupId>org.apache.maven</groupId>
3939
<artifactId>maven-plugin-api</artifactId>
40-
<version>2.0</version>
40+
<version>3.0.3</version>
4141
</dependency>
4242

4343
<dependency>
4444
<groupId>org.apache.maven</groupId>
4545
<artifactId>maven-project</artifactId>
46-
<version>2.0.2</version>
46+
<version>3.0-alpha-2</version>
4747
</dependency>
4848

4949
<!--

InteractiveImageDemo/pom.xml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<plugin>
5050
<groupId>org.apache.maven.plugins</groupId>
5151
<artifactId>maven-jar-plugin</artifactId>
52-
<version>2.3.1</version>
52+
<version>2.3.2</version>
5353
<configuration>
5454
<archive>
5555
<manifest>
@@ -59,15 +59,6 @@
5959
</configuration>
6060
</plugin>
6161

62-
<plugin>
63-
<groupId>org.apache.maven.plugins</groupId>
64-
<artifactId>maven-compiler-plugin</artifactId>
65-
<version>2.3.1</version>
66-
<configuration>
67-
<source>1.5</source>
68-
<target>1.5</target>
69-
</configuration>
70-
</plugin>
7162
</plugins>
7263
</build>
7364

JavaCL/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ For more info, please visit http://code.google.com/p/nativelibs4java/wiki/OpenCL
3434
<dependency>
3535
<groupId>org.apache.commons</groupId>
3636
<artifactId>commons-math</artifactId>
37-
<version>2.1</version>
37+
<version>2.2</version>
3838
<scope>test</scope>
3939
</dependency>
4040
<dependency>
@@ -70,7 +70,7 @@ For more info, please visit http://code.google.com/p/nativelibs4java/wiki/OpenCL
7070
<plugin>
7171
<groupId>org.apache.maven.plugins</groupId>
7272
<artifactId>maven-jar-plugin</artifactId>
73-
<version>2.3.1</version>
73+
<version>2.3.2</version>
7474
<configuration>
7575
<archive>
7676
<manifest>

JavaCLTutorial/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<packaging>jar</packaging>
1111

1212
<properties>
13-
<scala.version>2.8.1</scala.version>
13+
<scala.version>2.9.1</scala.version>
1414
</properties>
1515

1616
<repositories>
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>org.apache.commons</groupId>
3232
<artifactId>commons-math</artifactId>
33-
<version>2.1</version>
33+
<version>2.2</version>
3434
</dependency>
3535
<dependency>
3636
<groupId>org.scala-lang</groupId>
@@ -60,7 +60,7 @@
6060
<plugin>
6161
<groupId>org.apache.maven.plugins</groupId>
6262
<artifactId>maven-compiler-plugin</artifactId>
63-
<version>2.3.1</version>
63+
<version>2.3.2</version>
6464
<configuration>
6565
<source>1.5</source>
6666
<target>1.5</target>
@@ -81,7 +81,7 @@
8181
<plugin>
8282
<groupId>org.apache.maven.plugins</groupId>
8383
<artifactId>maven-shade-plugin</artifactId>
84-
<version>1.3.3</version>
84+
<version>1.4</version>
8585
<executions>
8686
<execution>
8787
<phase>package</phase>

NumericalBenchmark/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<packaging>jar</packaging>
1111

1212
<properties>
13-
<scala.version>2.8.1</scala.version>
13+
<scala.version>2.9.1</scala.version>
1414
</properties>
1515

1616
<repositories>
@@ -31,7 +31,7 @@
3131
<dependency>
3232
<groupId>org.apache.commons</groupId>
3333
<artifactId>commons-math</artifactId>
34-
<version>2.1</version>
34+
<version>2.2</version>
3535
</dependency>
3636
<dependency>
3737
<groupId>org.scala-lang</groupId>
@@ -61,7 +61,7 @@
6161
<plugin>
6262
<groupId>org.apache.maven.plugins</groupId>
6363
<artifactId>maven-compiler-plugin</artifactId>
64-
<version>2.3.1</version>
64+
<version>2.3.2</version>
6565
<configuration>
6666
<source>1.5</source>
6767
<target>1.5</target>
@@ -82,7 +82,7 @@
8282
<plugin>
8383
<groupId>org.apache.maven.plugins</groupId>
8484
<artifactId>maven-shade-plugin</artifactId>
85-
<version>1.3.3</version>
85+
<version>1.4</version>
8686
<executions>
8787
<execution>
8888
<phase>package</phase>

Parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<plugin>
2828
<groupId>org.apache.maven.plugins</groupId>
2929
<artifactId>maven-shade-plugin</artifactId>
30-
<version>1.3.3</version>
30+
<version>1.4</version>
3131
<executions>
3232

3333
<execution>

0 commit comments

Comments
 (0)