Skip to content

Commit a04fb25

Browse files
committed
Update dependencies
1 parent aba32f1 commit a04fb25

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

pom.xml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
<dependency>
9191
<groupId>org.apache.maven.plugin-tools</groupId>
9292
<artifactId>maven-plugin-annotations</artifactId>
93-
<version>3.9.0</version>
93+
<version>3.12.0</version>
9494
<scope>provided</scope>
9595
</dependency>
9696
<dependency>
@@ -101,17 +101,22 @@
101101
<dependency>
102102
<groupId>org.codehaus.plexus</groupId>
103103
<artifactId>plexus-archiver</artifactId>
104-
<version>4.7.1</version>
104+
<version>4.8.0</version>
105105
</dependency>
106106
<dependency>
107107
<groupId>org.codehaus.plexus</groupId>
108108
<artifactId>plexus-utils</artifactId>
109-
<version>3.5.1</version>
109+
<version>4.0.1</version>
110+
</dependency>
111+
<dependency>
112+
<groupId>org.codehaus.plexus</groupId>
113+
<artifactId>plexus-xml</artifactId>
114+
<version>3.0.1</version>
110115
</dependency>
111116
<dependency>
112117
<groupId>org.codehaus.plexus</groupId>
113118
<artifactId>plexus-compiler-api</artifactId>
114-
<version>2.13.0</version>
119+
<version>2.15.0</version>
115120
</dependency>
116121
<dependency>
117122
<groupId>org.apache.maven</groupId>
@@ -122,7 +127,7 @@
122127
<dependency>
123128
<groupId>org.apache.maven</groupId>
124129
<artifactId>maven-archiver</artifactId>
125-
<version>3.6.0</version>
130+
<version>3.6.2</version>
126131
<exclusions>
127132
<exclusion>
128133
<groupId>org.apache.maven</groupId>
@@ -141,7 +146,7 @@
141146
<dependency>
142147
<groupId>org.apache.maven.surefire</groupId>
143148
<artifactId>maven-surefire-common</artifactId>
144-
<version>3.1.2</version>
149+
<version>3.3.0</version>
145150
<exclusions>
146151
<exclusion>
147152
<groupId>org.apache.maven</groupId>

src/main/java/net/ltgt/gwt/maven/CodeServerMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* Runs GWT's CodeServer (SuperDevMode).
1919
*/
20-
@Mojo(name = "codeserver", requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME, requiresDirectInvocation = true, threadSafe = true, aggregator = true)
20+
@Mojo(name = "codeserver", requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME, threadSafe = true, aggregator = true)
2121
@Execute(phase = LifecyclePhase.PROCESS_CLASSES)
2222
public class CodeServerMojo extends AbstractDevModeMojo {
2323

src/main/java/net/ltgt/gwt/maven/DevModeMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* Runs GWT's DevMode.
1919
*/
20-
@Mojo(name = "devmode", requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME, requiresDirectInvocation = true, threadSafe = true, aggregator = true)
20+
@Mojo(name = "devmode", requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME, threadSafe = true, aggregator = true)
2121
@Execute(phase = LifecyclePhase.PROCESS_CLASSES)
2222
public class DevModeMojo extends AbstractDevModeMojo {
2323

0 commit comments

Comments
 (0)