62 lines
2.0 KiB
XML
62 lines
2.0 KiB
XML
<?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/xsd/maven-4.0.0.xsd">
|
|
<!--
|
|
Copyright (C) 2010 Talend Inc. - www.talend.com
|
|
-->
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.talend</groupId>
|
|
<artifactId>org.talend.tos</artifactId>
|
|
<version>7.2.1-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>org.talend.utils/pom_minimal.xml</module>
|
|
<module>org.talend.utils/pom_server.xml</module>
|
|
<module>org.talend.commons.runtime/pom_server.xml</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<defaultGoal>install</defaultGoal>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<version>2.5.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>2.8.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.22.1</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>tos-releases</id>
|
|
<name>TOS releases Repository</name>
|
|
<url>${tos.releases.repo.url}</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>tos-snapshots</id>
|
|
<name>TOS snapshots Repository</name>
|
|
<url>${tos.snapshots.repo.url}</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
</project>
|