Skip to content

Commit 9c67549

Browse files
committed
Merge pull request #1139 from swagger-api/develop_2.0
merge from develop 2.0 for release
2 parents 13e8bf3 + 377ad2c commit 9c67549

File tree

850 files changed

+21479
-52302
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

850 files changed

+21479
-52302
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ samples/scala-play2/logs
1010
.cache
1111
atlassian-ide-plugin.xml
1212
*.iml
13-
.java-version
13+
.java-version
14+
sonar-project.properties

README.md

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The Swagger Specification has undergone 3 revisions since initial creation in 20
2929

3030
Swagger core Version | Release Date | Swagger Spec compatibility | Notes | Status
3131
------------------------- | ------------ | -------------------------- | ----- | ----
32-
1.5.2-M2 | 2015-04-05 | 2.0 | [master](https://github.com/swagger-api/swagger-core) | Supported
32+
1.5.0 | 2015-06-06 | 2.0 | [master](https://github.com/swagger-api/swagger-core) | Supported
3333
1.3.12 | 2014-12-23 | 1.2 | [tag v1.3.12](https://github.com/swagger-api/swagger-core/tree/v1.3.12) | Supported
3434
1.2.4 | 2013-06-19 | 1.1 | [tag swagger-project_2.10.0-1.2.4](https://github.com/swagger-api/swagger-core/tree/swagger-project_2.10.0-1.2.4) | Deprecated
3535
1.0.0 | 2011-10-16 | 1.0 | [tag v1.0](https://github.com/swagger-api/swagger-core/tree/v1.0) | Deprecated
@@ -43,7 +43,6 @@ This is a project to build the swagger-core library, which is required for the S
4343
### Change History
4444
If you're interested in the change history of swagger and the swagger-core framework, see [here](https://github.com/swagger-api/swagger-core/wiki/Changelog).
4545

46-
4746
### Prerequisites
4847
You need the following installed and available in your $PATH:
4948

@@ -52,7 +51,7 @@ You need the following installed and available in your $PATH:
5251
* Jackson 2.4.2 or greater
5352

5453

55-
### To build from source (currently 1.5.2-M2)
54+
### To build from source (currently 1.5.0)
5655
```
5756
# first time building locally
5857
mvn -N
@@ -63,24 +62,19 @@ Subsequent builds:
6362
mvn install
6463
```
6564

66-
This will build the modules. To build sample apps, activate the `samples` profile:
67-
68-
```
69-
mvn install -Psamples
70-
```
65+
This will build the modules.
7166

7267
Of course if you don't want to build locally you can grab artifacts from maven central:
7368

74-
`http://repo1.maven.org/maven2/com/wordnik/`
69+
`http://repo1.maven.org/maven2/io/swagger/`
7570

76-
## Sample Apps
77-
There are a number of sample apps in the [samples](https://github.com/swagger-api/swagger-core/blob/master/samples) folder.
71+
## Sample Apps - *UPDATED*
72+
The samples have moved to [a new repository](https://github.com/swagger-api/swagger-samples) and contain various integrations and configurations.
7873

79-
```
8074

81-
License
82-
-------
75+
## License
8376

77+
```
8478
Copyright 2015 SmartBear Software
8579
8680
Licensed under the Apache License, Version 2.0 (the "License");
@@ -92,4 +86,4 @@ distributed under the License is distributed on an "AS IS" BASIS,
9286
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9387
See the License for the specific language governing permissions and
9488
limitations under the License.
95-
89+
```
Lines changed: 30 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,35 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<parent>
4-
<groupId>com.wordnik</groupId>
5-
<artifactId>swagger-project</artifactId>
6-
<version>1.5.2-M2</version>
7-
<relativePath>../..</relativePath>
8-
</parent>
9-
<modelVersion>4.0.0</modelVersion>
10-
<groupId>com.wordnik</groupId>
11-
<artifactId>swagger-annotations</artifactId>
12-
<version>1.5.2-M2</version>
13-
<packaging>bundle</packaging>
14-
<name>swagger-annotations</name>
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<parent>
5+
<groupId>io.swagger</groupId>
6+
<artifactId>swagger-project</artifactId>
7+
<version>1.5.0</version>
8+
<relativePath>../..</relativePath>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
<groupId>io.swagger</groupId>
12+
<artifactId>swagger-annotations</artifactId>
13+
<version>1.5.0</version>
14+
<packaging>bundle</packaging>
15+
<name>swagger-annotations</name>
1516

16-
<build>
17-
<sourceDirectory>src/main/java</sourceDirectory>
18-
<defaultGoal>install</defaultGoal>
17+
<build>
18+
<sourceDirectory>src/main/java</sourceDirectory>
19+
<defaultGoal>install</defaultGoal>
1920

20-
<plugins>
21-
<plugin>
22-
<groupId>org.apache.felix</groupId>
23-
<artifactId>maven-bundle-plugin</artifactId>
24-
<extensions>true</extensions>
25-
<configuration>
26-
<instructions>
27-
<Export-Package>com.wordnik.swagger.annotations</Export-Package>
28-
</instructions>
29-
</configuration>
30-
</plugin>
31-
</plugins>
21+
<plugins>
22+
<plugin>
23+
<groupId>org.apache.felix</groupId>
24+
<artifactId>maven-bundle-plugin</artifactId>
25+
<extensions>true</extensions>
26+
<configuration>
27+
<instructions>
28+
<Export-Package>io.swagger.annotations</Export-Package>
29+
</instructions>
30+
</configuration>
31+
</plugin>
32+
</plugins>
3233

33-
</build>
34+
</build>
3435
</project>

modules/swagger-annotations/src/main/java/com/wordnik/swagger/annotations/Api.java

Lines changed: 0 additions & 141 deletions
This file was deleted.

modules/swagger-annotations/src/main/java/com/wordnik/swagger/annotations/ApiImplicitParam.java

Lines changed: 0 additions & 109 deletions
This file was deleted.

0 commit comments

Comments
 (0)