[jboss-cvs] javassist SVN: r548 - in tags: rel_3_12_1_ga and 1 other directory.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Fri Jun 11 08:30:33 EDT 2010
Author: kabir.khan at jboss.com
Date: 2010-06-11 08:30:33 -0400 (Fri, 11 Jun 2010)
New Revision: 548
Added:
tags/rel_3_12_1_ga/
tags/rel_3_12_1_ga/pom.xml
Removed:
tags/rel_3_12_1_ga/pom.xml
Log:
[maven-release-plugin] copy for tag rel_3_12_1_ga
Copied: tags/rel_3_12_1_ga (from rev 546, trunk)
Deleted: tags/rel_3_12_1_ga/pom.xml
===================================================================
--- trunk/pom.xml 2010-05-17 09:18:20 UTC (rev 546)
+++ tags/rel_3_12_1_ga/pom.xml 2010-06-11 12:30:33 UTC (rev 548)
@@ -1,205 +0,0 @@
-<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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>javassist</groupId>
- <artifactId>javassist</artifactId>
- <packaging>jar</packaging>
- <description>Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
- simple. It is a class library for editing bytecodes in Java.
- </description>
- <version>3.12.1-SNAPSHOT</version>
- <name>Javassist</name>
- <url>http://www.javassist.org/</url>
-
- <issueManagement>
- <system>JIRA</system>
- <url>https://jira.jboss.org/jira/browse/JASSIST/</url>
- </issueManagement>
- <licenses>
- <!-- this is the license under which javassist is usually distributed
- -->
- <license>
- <name>MPL 1.1</name>
- <url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
- </license>
- <!-- this is the license under which javassist is distributed when
- it is bundled with JBoss
- -->
- <license>
- <name>LGPL 2.1</name>
- <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
- </license>
- </licenses>
-
- <scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/javassist/</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/javassist/</developerConnection>
- <url>http://fisheye.jboss.org/browse/javassist/</url>
- </scm>
-
- <developers>
- <developer>
- <id>chiba</id>
- <name>Shigeru Chiba</name>
- <email>chiba at acm.org</email>
- <organization>Tokyo Institute Of Technology</organization>
- <organizationUrl>http://www.csg.is.titech.ac.jp/</organizationUrl>
- <roles>
- <role>project lead</role>
- </roles>
- <timezone>8</timezone>
- </developer>
-
- <developer>
- <id>adinn</id>
- <name>Andrew Dinn</name>
- <email>adinn at redhat.com</email>
- <organization>JBoss</organization>
- <organizationUrl>http://www.jboss.org/</organizationUrl>
- <roles>
- <role>contributing developer</role>
- </roles>
- <timezone>0</timezone>
- </developer>
- </developers>
-
- <distributionManagement>
- <!--
- You need entries in your .m2/settings.xml like this:
- <servers>
- <server>
- <id>jboss-releases-repository</id>
- <username>your_jboss.org_username</username>
- <password>password</password>
- </server>
- <server>
- <id>jboss-snapshots-repository</id>
- <username>your_jboss.org_username</username>
- <password>password</password>
- </server>
- </servers>
-
- To deploy a snapshot, you need to run
-
- mvn deploy -Dversion=3.x.y-SNAPSHOT
-
- To deploy a release you need to change the version to 3.x.y.GA and run
-
- mvn deploy
- -->
- <repository>
- <id>jboss-releases-repository</id>
- <name>JBoss Releases Repository</name>
- <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
- </repository>
- <snapshotRepository>
- <id>jboss-snapshots-repository</id>
- <name>JBoss Snapshots Repository</name>
- <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
- </snapshotRepository>
- </distributionManagement>
- <build>
- <sourceDirectory>src/main/</sourceDirectory>
- <testSourceDirectory>src/test/</testSourceDirectory>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.4</source>
- <target>1.4</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifestFile>${project.build.sourceDirectory}/META-INF/MANIFEST.MF</manifestFile>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-source-plugin</artifactId>
- <version>2.0.3</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- <inherited>true</inherited>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>jdk14</id>
- <activation>
- <jdk>1.4</jdk>
- <property>
- <name>!no.tools</name>
- </property>
- </activation>
- <dependencies>
- <dependency>
- <groupId>com.sun</groupId>
- <artifactId>tools</artifactId>
- <version>1.4</version>
- <scope>system</scope>
- <optional>true</optional>
- <systemPath>${java.home}/../lib/tools.jar</systemPath>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jdk15</id>
- <activation>
- <jdk>1.5</jdk>
- <property>
- <name>!no.tools</name>
- </property>
- </activation>
- <dependencies>
- <dependency>
- <groupId>com.sun</groupId>
- <artifactId>tools</artifactId>
- <version>1.5</version>
- <scope>system</scope>
- <optional>true</optional>
- <systemPath>${java.home}/../lib/tools.jar</systemPath>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jdk16</id>
- <activation>
- <jdk>1.6</jdk>
- <property>
- <name>!no.tools</name>
- </property>
- </activation>
- <dependencies>
- <dependency>
- <groupId>com.sun</groupId>
- <artifactId>tools</artifactId>
- <version>1.6</version>
- <scope>system</scope>
- <optional>true</optional>
- <systemPath>${java.home}/../lib/tools.jar</systemPath>
- </dependency>
- </dependencies>
- </profile>
- </profiles>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-</project>
Copied: tags/rel_3_12_1_ga/pom.xml (from rev 547, trunk/pom.xml)
===================================================================
--- tags/rel_3_12_1_ga/pom.xml (rev 0)
+++ tags/rel_3_12_1_ga/pom.xml 2010-06-11 12:30:33 UTC (rev 548)
@@ -0,0 +1,203 @@
+<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">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>javassist</groupId>
+ <artifactId>javassist</artifactId>
+ <packaging>jar</packaging>
+ <description>Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
+ simple. It is a class library for editing bytecodes in Java.
+ </description>
+ <version>3.12.1.GA</version>
+ <name>Javassist</name>
+ <url>http://www.javassist.org/</url>
+
+ <issueManagement>
+ <system>JIRA</system>
+ <url>https://jira.jboss.org/jira/browse/JASSIST/</url>
+ </issueManagement>
+ <licenses>
+ <!-- this is the license under which javassist is usually distributed
+ -->
+ <license>
+ <name>MPL 1.1</name>
+ <url>http://www.mozilla.org/MPL/MPL-1.1.html</url>
+ </license>
+ <!-- this is the license under which javassist is distributed when
+ it is bundled with JBoss
+ -->
+ <license>
+ <name>LGPL 2.1</name>
+ <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
+ </license>
+ </licenses>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/javassist/tags/rel_3_12_1_ga</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/javassist/tags/rel_3_12_1_ga</developerConnection>
+ <url>http://fisheye.jboss.org/browse/javassist/tags/rel_3_12_1_ga</url>
+ </scm>
+
+ <developers>
+ <developer>
+ <id>chiba</id>
+ <name>Shigeru Chiba</name>
+ <email>chiba at acm.org</email>
+ <organization>Tokyo Institute Of Technology</organization>
+ <organizationUrl>http://www.csg.is.titech.ac.jp/</organizationUrl>
+ <roles>
+ <role>project lead</role>
+ </roles>
+ <timezone>8</timezone>
+ </developer>
+
+ <developer>
+ <id>adinn</id>
+ <name>Andrew Dinn</name>
+ <email>adinn at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>contributing developer</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+ </developers>
+
+ <distributionManagement>
+ <!--
+ You need entries in your .m2/settings.xml like this:
+ <servers>
+ <server>
+ <id>jboss-releases-repository</id>
+ <username>your_jboss.org_username</username>
+ <password>password</password>
+ </server>
+ <server>
+ <id>jboss-snapshots-repository</id>
+ <username>your_jboss.org_username</username>
+ <password>password</password>
+ </server>
+ </servers>
+
+ To deploy a snapshot, you need to run
+
+ mvn deploy -Dversion=3.x.y-SNAPSHOT
+
+ To deploy a release you need to change the version to 3.x.y.GA and run
+
+ mvn deploy
+ -->
+ <repository>
+ <id>jboss-releases-repository</id>
+ <name>JBoss Releases Repository</name>
+ <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
+ </repository>
+ <snapshotRepository>
+ <id>jboss-snapshots-repository</id>
+ <name>JBoss Snapshots Repository</name>
+ <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
+ </snapshotRepository>
+ </distributionManagement>
+ <build>
+ <sourceDirectory>src/main/</sourceDirectory>
+ <testSourceDirectory>src/test/</testSourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestFile>${project.build.sourceDirectory}/META-INF/MANIFEST.MF</manifestFile>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-source-plugin</artifactId>
+ <version>2.0.3</version>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ <inherited>true</inherited>
+ </plugin>
+ </plugins>
+ </build>
+ <!--profiles>
+ <profile>
+ <id>jdk14</id>
+ <activation>
+ <jdk>1.4</jdk>
+ <property>
+ <name>!no.tools</name>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>com.sun</groupId>
+ <artifactId>tools</artifactId>
+ <version>1.4</version>
+ <scope>system</scope>
+ <optional>true</optional>
+ <systemPath>${java.home}/../lib/tools.jar</systemPath>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jdk15</id>
+ <activation>
+ <jdk>1.5</jdk>
+ <property>
+ <name>!no.tools</name>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>com.sun</groupId>
+ <artifactId>tools</artifactId>
+ <version>1.5</version>
+ <scope>system</scope>
+ <optional>true</optional>
+ <systemPath>${java.home}/../lib/tools.jar</systemPath>
+ </dependency>
+ </dependencies>
+ </profile>
+ <profile>
+ <id>jdk16</id>
+ <activation>
+ <jdk>1.6</jdk>
+ <property>
+ <name>!no.tools</name>
+ </property>
+ </activation>
+ <dependencies>
+ <dependency>
+ <groupId>com.sun</groupId>
+ <artifactId>tools</artifactId>
+ <version>1.6</version>
+ <scope>system</scope>
+ <optional>true</optional>
+ <systemPath>${java.home}/../lib/tools.jar</systemPath>
+ </dependency>
+ </dependencies>
+ </profile>
+ </profiles-->
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
More information about the jboss-cvs-commits
mailing list