Skip to content

Commit

Permalink
[maven-release-plugin] prepare release 2.0.0.Beta16
Browse files Browse the repository at this point in the history
  • Loading branch information
alesj committed Jun 16, 2008
1 parent 77eb768 commit 861b864
Show file tree
Hide file tree
Showing 2 changed files with 270 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Expand Up @@ -8,14 +8,14 @@
<groupId>org.jboss</groupId>
<artifactId>jboss-vfs</artifactId>
<packaging>jar</packaging>
<version>2.0.0-SNAPSHOT</version>
<version>2.0.0.Beta16</version>
<name>JBoss VFS</name>
<url>http://www.jboss.org</url>
<description>A VFS library</description>
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/vfs/trunk</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/vfs/trunk</developerConnection>
<url>https://svn.jboss.org/repos/jbossas/projects/vfs/trunk</url>
<connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/vfs/tags/2.0.0.Beta16</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/vfs/tags/2.0.0.Beta16</developerConnection>
<url>https://svn.jboss.org/repos/jbossas/projects/vfs/tags/2.0.0.Beta16</url>
</scm>
<licenses>
<license>
Expand Down
266 changes: 266 additions & 0 deletions release-pom.xml
@@ -0,0 +1,266 @@
<?xml version="1.0" encoding="UTF-8"?><project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss</groupId>
<artifactId>jboss-vfs</artifactId>
<name>JBoss VFS</name>
<version>2.0.0.Beta16</version>
<description>A VFS library</description>
<url>http://www.jboss.org</url>
<issueManagement>
<system>jira</system>
<url>http://jira.jboss.com/</url>
</issueManagement>
<licenses>
<license>
<name>lgpl</name>
<url>http://repository.jboss.org/licenses/lgpl.txt</url>
</license>
</licenses>
<scm>
<connection>https://svn.jboss.org/repos/jbossas/projects/vfs/tags/2.0.0.Beta16</connection>
<developerConnection>https://svn.jboss.org/repos/jbossas/projects/vfs/tags/2.0.0.Beta16</developerConnection>
<url>https://svn.jboss.org/repos/jbossas/projects/vfs/tags/2.0.0.Beta16</url>
</scm>
<organization>
<name>JBoss, A division of Red Hat, Inc</name>
<url>http://www.jboss.org</url>
</organization>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<scriptSourceDirectory>src/main/scripts</scriptSourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
<outputDirectory>target/classes</outputDirectory>
<testOutputDirectory>target/test-classes</testOutputDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
<directory>target</directory>
<finalName>jboss-vfs</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0</version>
<configuration>
<debug>true</debug>
<source>1.5</source>
<target>1.5</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<optimize>true</optimize>
</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>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.3.1</version>
<configuration>
<forkMode>always</forkMode>
<useSystemClassLoader>true</useSystemClassLoader>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-7</version>
<configuration>
<tagBase>https://svn.jboss.org/repos/jbossas/projects/vfs/tags</tagBase>
<generateReleasePoms>true</generateReleasePoms>
<useReleaseProfile>false</useReleaseProfile>
<arguments>-Prelease</arguments>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<snapshots />
<id>snapshots.jboss.org</id>
<url>http://snapshots.jboss.org/maven2</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>repository.jboss.org</id>
<url>http://repository.jboss.org/maven2</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>Maven Repository Switchboard</name>
<url>http://repo1.maven.org/maven2</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>repository.jboss.org</id>
<url>http://repository.jboss.org/maven2</url>
</pluginRepository>
<pluginRepository>
<snapshots />
<id>snapshots.jboss.org</id>
<url>http://snapshots.jboss.org/maven2</url>
</pluginRepository>
<pluginRepository>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>Maven Plugin Repository</name>
<url>http://repo1.maven.org/maven2</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>apache-log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.14</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jboss.profiler.jvmti</groupId>
<artifactId>jboss-profiler-jvmti</artifactId>
<version>1.0.0.CR5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<version>1.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-junit</artifactId>
<version>1.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-launcher</artifactId>
<version>1.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-common-core</artifactId>
<version>2.2.5.GA</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jboss.jbossas</groupId>
<artifactId>jboss-server-manager</artifactId>
<version>0.1.0.GA</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-log4j</artifactId>
<version>2.0.5.GA</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging-spi</artifactId>
<version>2.0.5.GA</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jboss.test</groupId>
<artifactId>jboss-test</artifactId>
<version>1.1.0.GA</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<outputDirectory>target/site</outputDirectory>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.2</version>
<configuration>
<links>
<link>http://java.sun.com/j2se/1.5.0/docs/api</link>
</links>
</configuration>
</plugin>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.0.1</version>
</plugin>
<plugin>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.3</version>
<reportSets>
<reportSet>
<reports>
<report>report-only</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<version>2.0</version>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>repository.jboss.org</id>
<url>file:///projects/repository/maven2</url>
</repository>
<snapshotRepository>
<id>snapshots.jboss.org</id>
<name>JBoss Snapshot Repository</name>
<url>dav:https://snapshots.jboss.org/maven2</url>
</snapshotRepository>
</distributionManagement>
<properties>
<maven.repository.root>/projects/repository/maven2</maven.repository.root>
<version.junit>4.4</version.junit>
<jboss.repository.root>/projects/repository/jboss</jboss.repository.root>
<version.jboss.logging>2.0.5.GA</version.jboss.logging>
<version.jboss.test>1.1.0.GA</version.jboss.test>
<version.jboss.common.core>2.2.5.GA</version.jboss.common.core>
</properties>
</project>

0 comments on commit 861b864

Please sign in to comment.