jboss-as-parent-metadata
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.as</groupId> <artifactId>jboss-as-parent-metadata</artifactId> <version>7.0.0.Alpha1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ JBoss, Home of Professional Open Source. ~ Copyright 2010, Red Hat, Inc., and individual contributors ~ as indicated by the @author tags. See the copyright.txt file in the ~ distribution for a full listing of individual contributors. ~ ~ This is free software; you can redistribute it and/or modify it ~ under the terms of the GNU Lesser General Public License as ~ published by the Free Software Foundation; either version 2.1 of ~ the License, or (at your option) any later version. ~ ~ This software is distributed in the hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ~ Lesser General Public License for more details. ~ ~ You should have received a copy of the GNU Lesser General Public ~ License along with this software; if not, write to the Free ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org. --> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.jboss</groupId> <artifactId>jboss-parent</artifactId> <version>6-beta-1</version> </parent> <groupId>org.jboss.as</groupId> <artifactId>jboss-as-parent-metadata</artifactId> <version>7.0.0.Alpha1</version> <name>JBoss Application Server: Metadata Aggregator</name> <description>JBoss Application Server: Metadata Aggregator</description> <packaging>pom</packaging> <properties> <!-- Build configuration --> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> <maven.min.version>3.0-beta-1</maven.min.version> <!-- Dependency versions. Please keep alphabetical --> <version.org.jboss.spec.javax.servlet.jboss-servlet-api_3.0_spec>1.0.0.Beta2</version.org.jboss.spec.javax.servlet.jboss-servlet-api_3.0_spec> </properties> <modules> <module>common</module> <module>merge</module> <module>web</module> <module>parser</module> </modules> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.0-beta-9</version> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> </plugins> <pluginManagement> <plugins> <!-- Compiler plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.1</version> <configuration> <source>1.6</source> <target>1.6</target> <showDeprecation>true</showDeprecation> <showWarnings>true</showWarnings> </configuration> </plugin> <!-- Attach sources --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> <dependencyManagement> <dependencies> <!-- Modules in this project --> <dependency> <groupId>org.jboss.as.metadata</groupId> <artifactId>jboss-metadata-common</artifactId> <type>pom</type> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.as.metadata</groupId> <artifactId>jboss-metadata-web</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.as.metadata</groupId> <artifactId>jboss-metadata-merge</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jboss.as.metadata</groupId> <artifactId>jboss-metadata-parser</artifactId> <version>${project.version}</version> </dependency> </dependencies> </dependencyManagement> <repositories> <repository> <id>jboss-public-repository-group</id> <name>JBoss Public Repository Group</name> <url>http://repository.jboss.org/nexus/content/groups/public/</url> <layout>default</layout> <releases> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>never</updatePolicy> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>jboss-public-repository-group</id> <name>JBoss Public Repository Group</name> <url>http://repository.jboss.org/nexus/content/groups/public/</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> <scm> <connection>scm:git:git@github.com:jfclere/metadata.git</connection> <url>scm:git:git@github.com:jfclere/metadata.git</url> <developerConnection>scm:git:git@github.com:jfclere/metadata.git</developerConnection> </scm> </project>