updated pom.xml

This commit is contained in:
Tony Tam 2012-08-24 15:31:49 -07:00
parent 58ce2a1298
commit 05ccb75ebf

94
pom.xml
View File

@ -1,36 +1,58 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.wordnik</groupId> <groupId>com.wordnik</groupId>
<artifactId>swagger-codegen_2.9.1</artifactId> <artifactId>swagger-codegen_2.9.1</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>swagger-codegen</name> <name>swagger-codegen</name>
<version>1.2-SNAPSHOT</version> <version>2.0.0-SNAPSHOT</version>
<scm> <scm>
<connection>scm:git:git@github.com:wordnik/swagger-codegen-2.git</connection> <connection>scm:git:git@github.com:wordnik/swagger-codegen.git</connection>
<developerConnection>scm:git:git@github.com:wordnik/swagger-codegen-2.git</developerConnection> <developerConnection>scm:git:git@github.com:wordnik/swagger-codegen.git</developerConnection>
<url>https://github.com/wordnik/swagger-codegen-2</url> <url>https://github.com/wordnik/swagger-codegen</url>
</scm> </scm>
<prerequisites> <prerequisites>
<maven>2.2.0</maven> <maven>2.2.0</maven>
</prerequisites> </prerequisites>
<developers>
<pluginRepositories> <developer>
<pluginRepository> <id>rpidikiti</id>
<id>scala-tools.org</id> <name>Ramesh Pidikiti</name>
<name>Scala-Tools Maven2 Repository</name> <email>ramesh@wordnik.com</email>
<url>http://scala-tools.org/repo-releases</url> </developer>
</pluginRepository> <developer>
<pluginRepository> <id>ayush</id>
<id>maven-mongodb-plugin-repo</id> <name>Ayush Gupts</name>
<name>maven mongodb plugin repository</name> <email>ayush@glugbot.com</email>
<url>http://maven-mongodb-plugin.googlecode.com/svn/maven/repo</url> </developer>
<layout>default</layout> <developer>
</pluginRepository> <id>fehguy</id>
<name>Tony Tam</name>
<email>fehguy@gmail.com</email>
</pluginRepositories> </developer>
</developers>
<issueManagement>
<system>github</system>
<url>https://github.com/wordnik/swagger-codegen/issues</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>swagger-swaggersocket</name>
<archive>https://groups.google.com/forum/#!forum/swagger-swaggersocket</archive>
</mailingList>
</mailingLists>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
@ -63,8 +85,6 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<!-- attach test jar -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
@ -80,7 +100,6 @@
<configuration> <configuration>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId> <artifactId>build-helper-maven-plugin</artifactId>
@ -168,7 +187,11 @@
<version>${swagger-core-version}</version> <version>${swagger-core-version}</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.3</version>
</dependency>
<dependency> <dependency>
<groupId>org.fusesource.scalate</groupId> <groupId>org.fusesource.scalate</groupId>
<artifactId>scalate-wikitext</artifactId> <artifactId>scalate-wikitext</artifactId>
@ -198,27 +221,8 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<repositories>
<repository>
<id>scala-tools.org</id>
<name>Scala-Tools Maven2 Repository</name>
<url>http://scala-tools.org/repo-releases</url>
</repository>
<repository>
<id>wordnik-ci-aws</id>
<url>https://ci.aws.wordnik.com/artifactory/libs-snapshots/</url>
</repository>
<repository>
<id>wordnik-ci-aws-maven</id>
<url>https://ci.aws.wordnik.com/artifactory/m2-snapshots/</url>
</repository>
<repository>
<id>wordnik-ci-aws-remote</id>
<url>https://ci.aws.wordnik.com/artifactory/remote-repos/</url>
</repository>
</repositories>
<properties> <properties>
<swagger-core-version>1.02-SNAPSHOT</swagger-core-version> <swagger-core-version>1.1.0</swagger-core-version>
<scala-version>2.9.1-1</scala-version> <scala-version>2.9.1-1</scala-version>
<junit-version>4.8.1</junit-version> <junit-version>4.8.1</junit-version>
<maven-plugin.version>1.0.0</maven-plugin.version> <maven-plugin.version>1.0.0</maven-plugin.version>