mtn-maven-scm-provider
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.criticalsection.maven</groupId> <artifactId>mtn-maven-scm-provider</artifactId> <version>1.0-alpha-02</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- | Copyright (C) 2008 Tim Kettler | | This program is free software: you can redistribute it and/or modify | it under the terms of the GNU General Public License as published by | the Free Software Foundation, either version 3 of the License, or | (at your option) any later version. | | This program 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 General Public License for more details. | | You should have received a copy of the GNU General Public License | along with this program. If not, see <http://www.gnu.org/licenses />. --> <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> <parent> <groupId>org.criticalsection</groupId> <artifactId>cs-java-parent</artifactId> <version>2</version> </parent> <groupId>org.criticalsection.maven</groupId> <artifactId>mtn-maven-scm-provider</artifactId> <version>1.0-alpha-02</version> <name>Monotone Maven SCM Provider</name> <licenses> <license> <name>GNU General Public License (GPL), Version 3 or later</name> <url>http://www.fsf.org/licensing/licenses/gpl.txt</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-api</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>1.5.1</version> </dependency> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-test</artifactId> <version>1.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.criticalsection.mtn4java</groupId> <artifactId>mtn4java</artifactId> <version>1.0-alpha-02</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.modello</groupId> <artifactId>modello-maven-plugin</artifactId> <version>1.0-alpha-15</version> <executions> <execution> <goals> <goal>java</goal> <goal>xpp3-reader</goal> <goal>xsd</goal> </goals> </execution> </executions> <configuration> <version>1.0.0</version> <model>src/main/mdo/mtn-settings.mdo</model> </configuration> </plugin> <plugin> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-maven-plugin</artifactId> <version>1.3.8</version> <executions> <execution> <goals> <goal>descriptor</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/*TckTest.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>tck</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*Test*.java</include> </includes> <excludes> <exclude>**/MonotoneTestUtils.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> </profiles> <scm> <connection>scm:monotone:local://tag/mtn-maven-scm-provider-1.0-alpha-02</connection> <developerConnection>scm:monotone:local://tag/mtn-maven-scm-provider-1.0-alpha-02</developerConnection> </scm> </project>