mirror of
https://github.com/Alfresco/alfresco-sdk.git
synced 2026-09-16 18:13:23 +00:00
git-svn-id: http://maven-alfresco-archetypes.googlecode.com/svn/trunk/plugins/maven-nosnapshot-plugin@148 04253f4f-3451-0410-a141-5562f1e59037
54 lines
1.8 KiB
XML
54 lines
1.8 KiB
XML
<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>com.sourcesense.maven</groupId>
|
|
<artifactId>maven-nosnapshot-plugin</artifactId>
|
|
<packaging>maven-plugin</packaging>
|
|
<version>0.0.2-SNAPSHOT</version>
|
|
<name>maven-nosnapshot-plugin Maven Mojo</name>
|
|
<url>http://maven.apache.org</url>
|
|
<scm>
|
|
<developerConnection>scm:svn:https://maven-alfresco-archetypes.googlecode.com/svn/trunk/plugins/maven-nosnapshot-plugin</developerConnection>
|
|
<url>https://maven-alfresco-archetypes.googlecode.com/svn/trunk/plugins/maven-nosnapshot-plugin</url>
|
|
</scm>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
<version>2.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven-project</artifactId>
|
|
<version>2.0.9</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<configuration>
|
|
<!-- useEditMode>true</useEditMode>-->
|
|
<preparationGoals>clean</preparationGoals>
|
|
<goals>deploy</goals>
|
|
<tagBase>https://maven-alfresco-archetypes.googlecode.com/svn/tags</tagBase>
|
|
<useEditMode>true</useEditMode>
|
|
<username>g.columbro</username>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>ss-nexus</id>
|
|
<url>http://repository.sourcesense.com/nexus/content/repositories/releases</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
</project>
|