<?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/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>org.apache.flex</groupId> | |
<artifactId>flex-plugin-parent</artifactId> | |
<version>1.0.0-SNAPSHOT</version> | |
<packaging>pom</packaging> | |
<name>Maven-Flex-Plugin (Parent)</name> | |
<description>Maven plugin to allow building of artifacts using Apache Flex</description> | |
<url>http://incubator.apache.org/flex/</url> | |
<inceptionYear>2012</inceptionYear> | |
<organization> | |
<name>The Apache Software Foundation</name> | |
<url>http://apache.org/</url> | |
</organization> | |
<licenses> | |
<license> | |
<name>The Apache Software License, Version 2.0</name> | |
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | |
</license> | |
</licenses> | |
<developers> | |
<developer> | |
<id>cdutz</id> | |
<name>Chrisotfer Dutz</name> | |
<email>cdutz@apache.org</email> | |
<roles> | |
<role>developer</role> | |
</roles> | |
<timezone>+1</timezone> | |
</developer> | |
</developers> | |
<scm> | |
<connection> | |
scm:svn:https://svn.apache.org/repos/asf/incubator/flex/utilities/trunk/maven-flex-plugin | |
</connection> | |
<developerConnection> | |
scm:svn:https://svn.apache.org/repos/asf/incubator/flex/utilities/trunk/maven-flex-plugin | |
</developerConnection> | |
<url>https://svn.apache.org/repos/asf/incubator/flex/utilities/trunk/maven-flex-plugin</url> | |
</scm> | |
<properties> | |
<project.encoding>UTF-8</project.encoding> | |
<project.build.sourceEncoding>${project.encoding}</project.build.sourceEncoding> | |
<jdk.version>1.6</jdk.version> | |
<maven.version>3.0.4</maven.version> | |
</properties> | |
<modules> | |
<module>plugins</module> | |
<module>components</module> | |
<module>testsuite</module> | |
</modules> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>2.4</version> | |
<configuration> | |
<source>1.6</source> | |
<target>1.6</target> | |
<encoding>${project.encoding}</encoding> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-resources-plugin</artifactId> | |
<version>2.5</version> | |
<configuration> | |
<encoding>${project.encoding}</encoding> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
<dependencyManagement> | |
<dependencies> | |
<dependency> | |
<groupId>org.apache.maven</groupId> | |
<artifactId>maven-core</artifactId> | |
<version>${maven.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.maven</groupId> | |
<artifactId>maven-plugin-api</artifactId> | |
<version>${maven.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.maven.plugin-tools</groupId> | |
<artifactId>maven-plugin-annotations</artifactId> | |
<version>3.2</version> | |
<scope>compile</scope> | |
</dependency> | |
</dependencies> | |
</dependencyManagement> | |
</project> |