Skip to content

Commit e6abc14

Browse files
committed
V1.2.2
1 parent e331226 commit e6abc14

File tree

2 files changed

+24
-17
lines changed

2 files changed

+24
-17
lines changed

pom.xml

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

@@ -76,9 +77,15 @@
7677
<version>1.2.31</version>
7778
</dependency>
7879
<dependency>
79-
<groupId>com.beust</groupId>
80-
<artifactId>jcommander</artifactId>
81-
<version>1.72</version>
80+
<groupId>com.beust</groupId>
81+
<artifactId>jcommander</artifactId>
82+
<version>1.72</version>
83+
</dependency>
84+
<dependency>
85+
<groupId>org.slf4j</groupId>
86+
<artifactId>slf4j-nop</artifactId>
87+
<version>1.6.3</version>
88+
<scope>test</scope>
8289
</dependency>
8390
<dependency>
8491
<groupId>junit</groupId>
@@ -177,20 +184,20 @@
177184
<version>3.2</version>
178185
</plugin>
179186
<plugin>
180-
<groupId>org.codehaus.mojo</groupId>
181-
<artifactId>cobertura-maven-plugin</artifactId>
182-
<version>2.7</version>
183-
<configuration>
184-
<format>xml</format>
185-
<maxmem>256m</maxmem>
186-
<!-- aggregated reports for multi-module projects -->
187-
<aggregate>true</aggregate>
188-
</configuration>
187+
<groupId>org.codehaus.mojo</groupId>
188+
<artifactId>cobertura-maven-plugin</artifactId>
189+
<version>2.7</version>
190+
<configuration>
191+
<format>xml</format>
192+
<maxmem>256m</maxmem>
193+
<!-- aggregated reports for multi-module projects -->
194+
<aggregate>true</aggregate>
195+
</configuration>
189196
</plugin>
190197
<plugin>
191-
<groupId>org.eluder.coveralls</groupId>
192-
<artifactId>coveralls-maven-plugin</artifactId>
193-
<version>4.3.0</version>
198+
<groupId>org.eluder.coveralls</groupId>
199+
<artifactId>coveralls-maven-plugin</artifactId>
200+
<version>4.3.0</version>
194201
</plugin>
195202
</plugins>
196203
</build>

src/test/java/com/deepoove/swagger/test/CLITest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public void testVersion() {
8383
JCommander jCommander = JCommander.newBuilder().addObject(cli).build();
8484
jCommander.parse(argv);
8585
cli.run(jCommander);
86-
Assert.assertEquals(outContent.toString().trim(), "1.2.1");
86+
Assert.assertEquals(outContent.toString().trim(), "1.2.2");
8787
}
8888

8989
@Test

0 commit comments

Comments
 (0)