Skip to content

Commit

Permalink
Removed unnecessary dependencies from pom.xml - they are added transi…
Browse files Browse the repository at this point in the history
…tively
  • Loading branch information
pfisterer committed Mar 9, 2011
1 parent 2f60727 commit dd00a12
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 41 deletions.
14 changes: 7 additions & 7 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ CONTACT
Any feedback will be greatly appreciated, at the GitHub project page
(http://github.com/tranchis/xsd2thrift) or at tranchis_-_AT_-_gmail.com.

INSTALLATION / BUILDING
------------

No installation is required. To build xsd2thrift, you need Maven (http://maven.apache.org/) installed. To build xsd2thrift, run "mvn compile".

xsd2thrift has been tested on Java SE 6.

USAGE
-----

Expand All @@ -21,13 +28,6 @@ Usage: java xsd2thrift.jar [--thrift] [--protobuf] [--output=FILENAME]
--output=FILENAME : store the result in FILENAME instead of standard output
--package=NAME : set namespace/package of the output file

INSTALLATION
------------

No installation is required. The jarfile dist/xsd2thrift is autoexecutable.

xsd2thrift has been tested on Java SE 6.


LICENSE
-------
Expand Down
66 changes: 32 additions & 34 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,18 @@
<artifactId>xsom</artifactId>
<version>20110101-SNAPSHOT</version>
</dependency>

<!--
<dependency>
<groupId>relaxngDatatype</groupId>
<artifactId>relaxngDatatype</artifactId>
<groupId>relaxngDatatype</groupId>
<artifactId>relaxngDatatype</artifactId>
<version>20020414</version>
</dependency>

</dependency>
<dependency>
<groupId>com.sun.xml</groupId>
<artifactId>relaxngDatatype</artifactId>
<version>1.0</version>
</dependency>
-->
</dependencies>


Expand Down Expand Up @@ -55,25 +60,27 @@
</configuration>
</plugin>

<plugin>
<groupId>org.dstovall</groupId>
<artifactId>onejar-maven-plugin</artifactId>
<version>1.4.4</version>
<executions>
<execution>
<configuration>
<!-- Optional, default is false -->
<attachToBuild>true</attachToBuild>
<!-- Optional, default is "onejar" -->
<classifier>onejar</classifier>
</configuration>
<goals>
<goal>one-jar</goal>
</goals>
</execution>
</executions>
</plugin>


<plugin>
<groupId>org.dstovall</groupId>
<artifactId>onejar-maven-plugin-rc8fix2</artifactId>
<version>1.4.5</version>
<executions>
<execution>
<phase>package</phase>
<configuration>
<mainClass>com.github.tranchis.xsd2thrift.Main</mainClass>
<onejarVersion>0.97-RC10</onejarVersion>
<attachToBuild>true</attachToBuild>
<classifier>onejar</classifier>
</configuration>
<goals>
<goal>one-jar</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>

Expand Down Expand Up @@ -113,15 +120,6 @@
</snapshots>
</repository>

<repository>
<id>repository.tu-bs.de</id>
<url>http://www.ibr.cs.tu-bs.de/maven/</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<layout>default</layout>
</repository>

<repository>
<id>repository.jboss.org</id>
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
Expand All @@ -138,7 +136,7 @@

</repositories>

<pluginRepositories>
<pluginRepositories>
<pluginRepository>
<id>onejar-maven-plugin.googlecode.com</id>
<url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url>
Expand Down

0 comments on commit dd00a12

Please sign in to comment.