Skip to content

Commit 686f365

Browse files
committed
updated to new patch
1 parent 9ae106a commit 686f365

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

modules/swagger-codegen-distribution/pom.xml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<parent>
33
<groupId>com.wordnik</groupId>
44
<artifactId>swagger-codegen-project</artifactId>
5-
<version>2.1.1-M1-SNAPSHOT</version>
5+
<version>2.1.1-M1</version>
66
<relativePath>../..</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<groupId>com.wordnik</groupId>
1010
<artifactId>swagger-codegen-distribution</artifactId>
1111
<packaging>jar</packaging>
1212
<name>swagger-codegen (executable)</name>
13-
<version>2.1.1-M1-SNAPSHOT</version>
13+
<version>2.1.1-M1</version>
1414
<build>
1515
<testSourceDirectory>src/test/scala</testSourceDirectory>
1616
<outputDirectory>target/classes</outputDirectory>
@@ -19,6 +19,17 @@
1919
<directory>target</directory>
2020
<finalName>${project.artifactId}-${project.version}</finalName>
2121
<plugins>
22+
<plugin>
23+
<groupId>org.apache.maven.plugins</groupId>
24+
<artifactId>maven-jar-plugin</artifactId>
25+
<configuration>
26+
<archive>
27+
<manifest>
28+
<mainClass>com.wordnik.swagger.codegen.Codegen</mainClass>
29+
</manifest>
30+
</archive>
31+
</configuration>
32+
</plugin>
2233
<plugin>
2334
<groupId>org.apache.maven.plugins</groupId>
2435
<artifactId>maven-shade-plugin</artifactId>

modules/swagger-codegen/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<parent>
33
<groupId>com.wordnik</groupId>
44
<artifactId>swagger-codegen-project</artifactId>
5-
<version>2.1.1-M1-SNAPSHOT</version>
5+
<version>2.1.1-M1</version>
66
<relativePath>../..</relativePath>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<groupId>com.wordnik</groupId>
1010
<artifactId>swagger-codegen</artifactId>
1111
<packaging>jar</packaging>
1212
<name>swagger-codegen (core library)</name>
13-
<version>2.1.1-M1-SNAPSHOT</version>
13+
<version>2.1.1-M1</version>
1414
<build>
1515
<sourceDirectory>src/main/java</sourceDirectory>
1616
<defaultGoal>install</defaultGoal>

modules/swagger-generator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.wordnik</groupId>
55
<artifactId>swagger-codegen-project</artifactId>
6-
<version>2.1.1-M1-SNAPSHOT</version>
6+
<version>2.1.1-M1</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<groupId>com.wordnik</groupId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<artifactId>swagger-codegen-project</artifactId>
1010
<packaging>pom</packaging>
1111
<name>swagger-codegen-project</name>
12-
<version>2.1.1-M1-SNAPSHOT</version>
12+
<version>2.1.1-M1</version>
1313
<url>https://github.com/swagger-api/swagger-codegen</url>
1414
<scm>
1515
<connection>scm:git:[email protected]:swagger-api/swagger-codegen.git</connection>
@@ -347,7 +347,7 @@
347347
</repository>
348348
</repositories>
349349
<properties>
350-
<swagger-parser-version>1.0.0</swagger-parser-version>
350+
<swagger-parser-version>1.0.1-SNAPSHOT</swagger-parser-version>
351351
<scala-version>2.11.1</scala-version>
352352
<felix-version>2.3.4</felix-version>
353353
<swagger-core-version>1.5.1-M1</swagger-core-version>

0 commit comments

Comments
 (0)