Skip to content

Commit

Permalink
Updated POMs (for MC release)
Browse files Browse the repository at this point in the history
  • Loading branch information
alder committed Nov 7, 2011
1 parent ae1059e commit bb790fe
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 122 deletions.
39 changes: 3 additions & 36 deletions beaver-ant/pom.xml
Original file line number Diff line number Diff line change
@@ -1,35 +1,13 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.beaver</groupId>
<artifactId>beaver-ant</artifactId>
<version>0.9.9</version>
<packaging>jar</packaging>
<name>Beaver CC Ant Task</name>
<description>Ant Task</description>
<url>http://beaver.sf.net</url>

<parent>
<groupId>net.sf.beaver</groupId>
<artifactId>beaver</artifactId>
<version>0.9.9</version>
</parent>

<licenses>
<license>
<name>BSD</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<url>http://beaver.svn.sourceforge.net/viewvc/beaver/branches/v0.9/beaver-ant</url>
<connection>https://beaver.svn.sourceforge.net/svnroot/beaver/branches/v0.9/beaver-ant</connection>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<artifactId>beaver-ant</artifactId>

<dependencies>
<dependency>
Expand All @@ -39,24 +17,14 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<groupId>${parent.groupId}</groupId>
<artifactId>beaver-cc</artifactId>
<version>0.9.9</version>
<version>${parent.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.3</source>
<target>1.1</target>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
Expand All @@ -68,7 +36,6 @@
<goal>shade</goal>
</goals>
<configuration>
<!-- <minimizeJar>true</minimizeJar> -->
<artifactSet>
<excludes>
<exclude>org.apache.ant:*</exclude>
Expand Down
52 changes: 3 additions & 49 deletions beaver-cc/pom.xml
Original file line number Diff line number Diff line change
@@ -1,69 +1,24 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.beaver</groupId>
<artifactId>beaver-cc</artifactId>
<version>0.9.9</version>
<packaging>jar</packaging>
<name>Beaver CC</name>
<description>Compiler</description>
<url>http://beaver.sf.net</url>

<parent>
<groupId>net.sf.beaver</groupId>
<artifactId>beaver</artifactId>
<version>0.9.9</version>
</parent>

<licenses>
<license>
<name>BSD</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<url>http://beaver.svn.sourceforge.net/viewvc/beaver/branches/v0.9/beaver-cc</url>
<connection>https://beaver.svn.sourceforge.net/svnroot/beaver/branches/v0.9/beaver-cc</connection>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<artifactId>beaver-cc</artifactId>

<dependencies>
<dependency>
<groupId>${pom.groupId}</groupId>
<groupId>${parent.groupId}</groupId>
<artifactId>beaver-rt</artifactId>
<version>0.9.9</version>
<version>${parent.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.3</source>
<target>1.1</target>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<archive>
<manifest>
<mainClass>beaver.comp.run.Make</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
Expand All @@ -75,7 +30,6 @@
<goal>shade</goal>
</goals>
<configuration>
<!-- <minimizeJar>true</minimizeJar> -->
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>beaver.comp.run.Make</mainClass>
Expand Down
37 changes: 1 addition & 36 deletions beaver-rt/pom.xml
Original file line number Diff line number Diff line change
@@ -1,47 +1,12 @@
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>net.sf.beaver</groupId>
<artifactId>beaver-rt</artifactId>
<version>0.9.9</version>
<packaging>jar</packaging>
<name>Beaver RT</name>
<description>Parser Run-Time Library</description>
<url>http://beaver.sf.net</url>

<parent>
<groupId>net.sf.beaver</groupId>
<artifactId>beaver</artifactId>
<version>0.9.9</version>
</parent>

<licenses>
<license>
<name>BSD</name>
<url>http://www.opensource.org/licenses/bsd-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<url>http://beaver.svn.sourceforge.net/viewvc/beaver/branches/v0.9/beaver-rt</url>
<connection>https://beaver.svn.sourceforge.net/svnroot/beaver/branches/v0.9/beaver-rt</connection>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<artifactId>beaver-rt</artifactId>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.3</source>
<target>1.1</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
18 changes: 17 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<project>
<modelVersion>4.0.0</modelVersion>
<!--
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
-->
<groupId>net.sf.beaver</groupId>
<artifactId>beaver</artifactId>
<version>0.9.9</version>
Expand All @@ -18,7 +25,7 @@

<scm>
<url>http://beaver.svn.sourceforge.net/viewvc/beaver/branches/v0.9</url>
<connection>https://beaver.svn.sourceforge.net/svnroot/beaver/branches/v0.9</connection>
<connection>scm:svn:https://beaver.svn.sourceforge.net/svnroot/beaver/branches/v0.9</connection>
</scm>

<developers>
Expand Down Expand Up @@ -61,6 +68,15 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.3</source>
<target>1.1</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down

0 comments on commit bb790fe

Please sign in to comment.