2010-09-10 12:27:04 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<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>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm</artifactId>
|
2011-03-02 17:46:20 +01:00
|
|
|
<version>1.1-SNAPSHOT</version>
|
2010-09-10 12:27:04 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>sonia.scm.plugins</groupId>
|
|
|
|
|
<artifactId>scm-plugins</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
2011-03-02 17:46:20 +01:00
|
|
|
<version>1.1-SNAPSHOT</version>
|
2010-09-10 12:27:04 +02:00
|
|
|
<name>scm-plugins</name>
|
|
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
|
<module>scm-hg-plugin</module>
|
2010-09-20 14:24:30 +02:00
|
|
|
<module>scm-svn-plugin</module>
|
2010-09-26 17:02:31 +02:00
|
|
|
<module>scm-git-plugin</module>
|
2010-12-03 17:30:13 +01:00
|
|
|
<module>scm-graph-plugin</module>
|
2010-12-19 18:52:12 -05:00
|
|
|
<module>scm-activedirectory-auth-plugin</module>
|
2011-01-01 21:30:18 +01:00
|
|
|
<module>scm-pam-plugin</module>
|
2011-01-03 15:24:03 +01:00
|
|
|
<module>scm-bzr-plugin</module>
|
2011-01-09 12:55:20 +01:00
|
|
|
<module>scm-auth-ldap-plugin</module>
|
2010-09-10 12:27:04 +02:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>sonia.scm</groupId>
|
|
|
|
|
<artifactId>scm-core</artifactId>
|
2011-03-02 17:46:20 +01:00
|
|
|
<version>1.1-SNAPSHOT</version>
|
2010-09-10 12:27:04 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
2010-12-01 14:36:52 +01:00
|
|
|
<build>
|
|
|
|
|
<resources>
|
|
|
|
|
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>META-INF/scm/plugin.xml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>false</filtering>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>META-INF/scm/plugin.xml</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</resource>
|
|
|
|
|
|
|
|
|
|
</resources>
|
|
|
|
|
</build>
|
|
|
|
|
|
2011-01-10 21:02:35 +01:00
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>release</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>sonia.maven</groupId>
|
|
|
|
|
<artifactId>web-compressor</artifactId>
|
2011-03-02 17:30:11 +01:00
|
|
|
<version>1.0</version>
|
2011-01-10 21:02:35 +01:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>compress-directory</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<replace>true</replace>
|
|
|
|
|
<baseDirectory>${project.build.directory}/classes</baseDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
|
2010-09-10 12:27:04 +02:00
|
|
|
</project>
|