[jboss-cvs] repository.jboss.com/maven2/jboss/jboss-parent/2-SNAPSHOT ...

Paul Gier pgier at redhat.com
Wed Mar 21 16:22:51 EDT 2007


  User: pgier   
  Date: 07/03/21 16:22:51

  Added:       maven2/jboss/jboss-parent/2-SNAPSHOT      
                        jboss-parent-2-20070321.202106-1.pom.md5
                        maven-metadata.xml.md5
                        jboss-parent-2-20070321.202106-1.pom.sha1
                        jboss-parent-2-20070321.202106-1.pom
                        maven-metadata.xml maven-metadata.xml.sha1
  Log:
  Added version 2-SNAPSHOT of the parent pom.
  
  Revision  Changes    Path
  1.1      date: 2007/03/21 20:22:51;  author: pgier;  state: Exp;repository.jboss.com/maven2/jboss/jboss-parent/2-SNAPSHOT/jboss-parent-2-20070321.202106-1.pom.md5
  
  Index: jboss-parent-2-20070321.202106-1.pom.md5
  ===================================================================
  414f74ea17504187afd899b61f8ebc6f
  
  
  1.1      date: 2007/03/21 20:22:51;  author: pgier;  state: Exp;repository.jboss.com/maven2/jboss/jboss-parent/2-SNAPSHOT/maven-metadata.xml.md5
  
  Index: maven-metadata.xml.md5
  ===================================================================
  1f28288e99bc66e3db17d9676faaa872
  
  
  1.1      date: 2007/03/21 20:22:51;  author: pgier;  state: Exp;repository.jboss.com/maven2/jboss/jboss-parent/2-SNAPSHOT/jboss-parent-2-20070321.202106-1.pom.sha1
  
  Index: jboss-parent-2-20070321.202106-1.pom.sha1
  ===================================================================
  9ba1d09943d18fd88703bd17030dd3893506fedb
  
  
  1.1      date: 2007/03/21 20:22:51;  author: pgier;  state: Exp;repository.jboss.com/maven2/jboss/jboss-parent/2-SNAPSHOT/jboss-parent-2-20070321.202106-1.pom
  
  Index: jboss-parent-2-20070321.202106-1.pom
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!--
  A parent pom with default settings for jboss projects.
  Each jboss project should have something similar to the following lines in their pom file.
  <parent>
    <groupId>jboss</groupId>
    <artifactId>jboss-parent</artifactId>
    <version>2</version>
  </parent>
  
  To build this project maven 2 should be installed and "mvn" should be in the system path.  From the command line
  run "mvn".  This will run the default build goal "install".
  -->
  <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>jboss</groupId>
    <version>2-SNAPSHOT</version>
    <artifactId>jboss-parent</artifactId>
    <packaging>pom</packaging>
    <name>JBoss Parent POM</name>
    <description>Parent POM for all JBoss Projects. Provides default project build
      configuration.</description>
    <url>http://www.jboss.org</url>
    <prerequisites>
      <maven>2.0</maven>
    </prerequisites>
    <issueManagement>
      <system>jira</system>
      <url>http://jira.jboss.com/</url>
    </issueManagement>
    <licenses>
      <license>
        <name>lgpl</name>
        <url>http://repository.jboss.com/licenses/lgpl.txt</url>
      </license>
    </licenses>
    <organization>
      <name>JBoss Inc.</name>
      <url>http://www.jboss.org</url>
    </organization>
    <build>
      <defaultGoal>install</defaultGoal>
      <plugins>
        <!-- define how we want compilation to take place
        here, we accept most of the defaults but say that we want the
        optimization flag set, and define the source and target to be 1.5,
        these setting will be inherited by child projects -->
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <configuration>
            <source>1.5</source>
            <target>1.5</target>
            <showDeprecation>true</showDeprecation>
            <showWarnings>true</showWarnings>
            <optimize>true</optimize>
          </configuration>
        </plugin>
        <!-- define that we wish to create src jars -->
        <plugin>
          <artifactId>maven-source-plugin</artifactId>
          <inherited>true</inherited>
          <executions>
            <execution>
              <goals>
                <goal>jar</goal>
              </goals>
            </execution>
          </executions>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-jar-plugin</artifactId>
          <version>2.1</version>
          <configuration>
            <archive>
              <manifest>
                <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
                <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
              </manifest>
            </archive>
          </configuration>
        </plugin>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-eclipse-plugin</artifactId>
          <configuration>
            <downloadSources>true</downloadSources>
            <buildOutputDirectory>target/eclipse-classes</buildOutputDirectory>
          </configuration>
        </plugin>
      </plugins>
      <pluginManagement>
        <plugins>
          <plugin>
            <groupId>jboss.maven-plugins</groupId>
            <artifactId>jboss-deploy-maven-plugin</artifactId>
            <version>1.1</version>
            <executions>
              <execution>
                <goals>
                  <goal>jboss-deploy</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <jbossDeployRoot>${jboss.repository.root}</jbossDeployRoot>
            </configuration>
          </plugin>
        </plugins>
      </pluginManagement>
    </build>
    <repositories>
      <repository>
        <id>jboss</id>
        <name>JBoss Repository</name>
        <layout>default</layout>
        <url>http://repository.jboss.com/maven2/</url>
        <snapshots>
          <enabled>true</enabled>
        </snapshots>
      </repository>
    </repositories>
    <pluginRepositories>
      <pluginRepository>
        <id>jbosspluginrepo</id>
        <name>JBoss Plugin Repository</name>
        <url>http://repository.jboss.com/maven2</url>
        <layout>default</layout>
        <snapshots>
          <enabled>true</enabled>
        </snapshots>
      </pluginRepository>
    </pluginRepositories>
    <distributionManagement>
      <repository>
        <!-- Copy the distribution jar file to a local checkout of the maven repository -->
        <id>cvs-file-repository</id>
        <url>file://${maven.cvs.root}</url>
      </repository>
    </distributionManagement>
  </project>
  
  
  1.1      date: 2007/03/21 20:22:51;  author: pgier;  state: Exp;repository.jboss.com/maven2/jboss/jboss-parent/2-SNAPSHOT/maven-metadata.xml
  
  Index: maven-metadata.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?><metadata>
    <groupId>jboss</groupId>
    <artifactId>jboss-parent</artifactId>
    <version>2-SNAPSHOT</version>
    <versioning>
      <snapshot>
        <timestamp>20070321.202106</timestamp>
        <buildNumber>1</buildNumber>
      </snapshot>
      <lastUpdated>20070321202106</lastUpdated>
    </versioning>
  </metadata>
  
  
  1.1      date: 2007/03/21 20:22:51;  author: pgier;  state: Exp;repository.jboss.com/maven2/jboss/jboss-parent/2-SNAPSHOT/maven-metadata.xml.sha1
  
  Index: maven-metadata.xml.sha1
  ===================================================================
  0b2dda79399e29d5ed43dc9f5decaf05d92a5267
  
  



More information about the jboss-cvs-commits mailing list