| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| |
| --> |
| <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> |
| |
| <name>Apache Syncope Root</name> |
| <description>Syncope root POM</description> |
| |
| <groupId>org.apache.syncope</groupId> |
| <artifactId>syncope-root</artifactId> |
| <version>1.0.10-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| |
| <parent> |
| <groupId>org.apache</groupId> |
| <artifactId>apache</artifactId> |
| <version>13</version> |
| <relativePath /> |
| </parent> |
| |
| <scm> |
| <connection>scm:svn:http://svn.apache.org/repos/asf/syncope/branches/1_0_X</connection> |
| <developerConnection>scm:svn:https://svn.apache.org/repos/asf/syncope/branches/1_0_X</developerConnection> |
| <url>http://svn.apache.org/viewvc/syncope/branches/1_0_X</url> |
| </scm> |
| |
| <build> |
| <plugins> |
| <!-- Drop inherited behavior (i.e. don't put any more default LICENSE and NOTICE files in all artifacts) --> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-remote-resources-plugin</artifactId> |
| <executions> |
| <execution> |
| <goals> |
| <goal>process</goal> |
| </goals> |
| <phase>none</phase> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.apache.rat</groupId> |
| <artifactId>apache-rat-plugin</artifactId> |
| <configuration> |
| <excludes> |
| <exclude>nbactions.xml</exclude> |
| <exclude>nb-configuration.xml</exclude> |
| <exclude>**/META-INF/services/**</exclude> |
| <exclude>**/*.css</exclude> |
| <exclude>**/*.js</exclude> |
| <exclude>**/*.csv</exclude> |
| <exclude>**/archetype-resources/**</exclude> |
| <exclude>**/maven-eclipse.xml</exclude> |
| <exclude>**/*.iml</exclude> |
| <exclude>**/*.log</exclude> |
| <exclude>.externalToolBuilders/**</exclude> |
| <exclude>.git/**</exclude> |
| <exclude>.idea/**</exclude> |
| <exclude>**/.*</exclude> |
| <!-- Need to explicitely exclude these modules since they are not part of the default build |
| profile: they will be checked anyway in the apache-release profile, as submodules. --> |
| <exclude>archetype/**</exclude> |
| <exclude>hibernate-enhancer/**</exclude> |
| <exclude>quality/**</exclude> |
| </excludes> |
| </configuration> |
| <executions> |
| <execution> |
| <id>rat-check</id> |
| <phase>verify</phase> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <artifactId>maven-release-plugin</artifactId> |
| <version>2.5</version> |
| <configuration> |
| <mavenExecutorId>forked-path</mavenExecutorId> |
| <autoVersionSubmodules>true</autoVersionSubmodules> |
| <tagNameFormat>syncope-@{project.version}</tagNameFormat> |
| <arguments>-Papache-release</arguments> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <modules> |
| <module>build-tools</module> |
| <module>client</module> |
| <module>core</module> |
| <module>console</module> |
| <module>parent</module> |
| </modules> |
| |
| <profiles> |
| <profile> |
| <id>apache-release</id> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-gpg-plugin</artifactId> |
| <version>1.4</version> |
| <executions> |
| <execution> |
| <id>sign-artifacts</id> |
| <phase>verify</phase> |
| <goals> |
| <goal>sign</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <modules> |
| <module>quality</module> |
| <module>archetype</module> |
| <module>hibernate-enhancer</module> |
| </modules> |
| </profile> |
| |
| <profile> |
| <id>skipTests</id> |
| |
| <build> |
| <defaultGoal>clean install</defaultGoal> |
| </build> |
| </profile> |
| |
| </profiles> |
| </project> |