You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2014/10/03 16:39:30 UTC

git commit: [flex-falcon] [refs/heads/develop] - - Added automatic maven pom generation.

Repository: flex-falcon
Updated Branches:
  refs/heads/develop e4ade467c -> 529efb8e9


- Added automatic maven pom generation.


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/529efb8e
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/529efb8e
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/529efb8e

Branch: refs/heads/develop
Commit: 529efb8e960f23e7687238a50920d5dcf3fa2dc7
Parents: e4ade46
Author: cdutz <ch...@c-ware.de>
Authored: Fri Oct 3 16:39:15 2014 +0200
Committer: cdutz <ch...@c-ware.de>
Committed: Fri Oct 3 16:39:15 2014 +0200

----------------------------------------------------------------------
 maven.xml                     | 175 +++++++++++++++++++++++++++++++++++++
 maven/falcon-compiler-oem.pom |  15 ++++
 maven/falcon-compiler.pom     |  78 +++++++++++++++++
 3 files changed, 268 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/529efb8e/maven.xml
----------------------------------------------------------------------
diff --git a/maven.xml b/maven.xml
new file mode 100644
index 0000000..a3f4f5c
--- /dev/null
+++ b/maven.xml
@@ -0,0 +1,175 @@
+<?xml version="1.0" ?>
+<!--
+
+  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 default="install" basedir=".">
+
+    <property name="version" value="0.0.3"/>
+
+    <!-- Set type to RELEASE in order to deploy to the release repo -->
+    <property name="type" value="SNAPSHOT"/>
+
+    <condition property="maven.version"
+               value="${version}"
+               else="${version}-SNAPSHOT">
+        <equals arg1="${type}" arg2="RELEASE"/>
+    </condition>
+
+    <condition property="maven.repositoryId"
+               value="apache.releases.https"
+               else="apache.snapshots.https">
+        <equals arg1="${type}" arg2="RELEASE"/>
+    </condition>
+
+    <condition property="maven.repositoryUrl"
+               value="https://repository.apache.org/service/local/staging/deploy/maven2"
+               else="https://repository.apache.org/content/repositories/snapshots">
+        <equals arg1="${type}" arg2="RELEASE"/>
+    </condition>
+
+    <target name="package">
+        <echo message="Preparing Maven artifacts vor version ${maven.version} ..."/>
+
+        <delete dir="generated/maven"/>
+        <mkdir dir="generated/maven"/>
+
+        <copy file="maven/falcon-compiler.pom" tofile="generated/maven/falcon-compiler.pom">
+            <filterchain>
+                <tokenfilter>
+                    <replacestring from="@VERSION@" to="${maven.version}"/>
+                </tokenfilter>
+            </filterchain>
+        </copy>
+
+        <antcall target="-pack-maven-artifact">
+            <param name="moduleName" value="compiler"/>
+            <param name="artifactName" value="falcon-compiler"/>
+            <param name="fileName" value="generated/dist/sdk/lib/compiler.jar"/>
+        </antcall>
+
+        <antcall target="-pack-maven-artifact">
+            <param name="moduleName" value="flex-compiler-oem"/>
+            <param name="artifactName" value="falcon-compiler-oem"/>
+            <param name="fileName" value="../compiler/generated/dist/sdk/lib/flex-compiler-oem.jar"/>
+        </antcall>
+    </target>
+
+    <target name="install" depends="package, -setup-aether-antlib">
+        <echo message="Installing Maven artifacts ..."/>
+
+        <antcall target="-install-maven-artifact-file">
+            <param name="artifactName" value="falcon-compiler"/>
+        </antcall>
+
+        <antcall target="-install-maven-artifact-file">
+            <param name="artifactName" value="falcon-compiler-oem"/>
+        </antcall>
+    </target>
+
+    <target name="deploy" depends="install">
+        <echo message="Deploying Maven artifacts to repository with id ${maven.repositoryId} and url ${maven.repositoryUrl} ..."/>
+
+        <antcall target="-deploy-maven-artifact-file">
+            <param name="artifactName" value="falcon-compiler"/>
+        </antcall>
+
+        <antcall target="-deploy-maven-artifact-file">
+            <param name="artifactName" value="falcon-compiler-oem"/>
+        </antcall>
+    </target>
+
+    <!--
+
+        Internal helper targets.
+
+    -->
+
+    <target name="-setup-aether-antlib">
+        <mkdir dir="utils"/>
+        <get src="http://search.maven.org/remotecontent?filepath=org/eclipse/aether/aether-ant-tasks/1.0.0.v20140518/aether-ant-tasks-1.0.0.v20140518-uber.jar"
+             dest="utils/aether-ant-tasks-uber.jar" verbose="true" skipexisting="true"/>
+        <fail message="Checksum mismatch for 'antlib/aether-ant-tasks-uber.jar'. Please delete it and rerun ant to redownload.">
+            <condition>
+                <not>
+                    <checksum file="utils/aether-ant-tasks-uber.jar" algorithm="SHA"
+                              property="95dadd03392a75564904da45108cf048abe6e5bb" verifyproperty="checksum.matches"/>
+                </not>
+            </condition>
+        </fail>
+        <!-- Setup the maven-ant-tasks. -->
+        <path id="aether-ant-tasks.classpath" path="utils/aether-ant-tasks-uber.jar" />
+        <typedef resource="org/eclipse/aether/ant/antlib.xml"
+                 uri="antlib:org.eclipse.aether.ant"
+                 classpathref="aether-ant-tasks.classpath" />
+    </target>
+
+    <target name="-pack-maven-artifact">
+        <echo message="Packing module ${moduleName} as Maven artifact ${artifactName}"/>
+        <copy file="maven/${artifactName}.pom" tofile="generated/maven/${artifactName}.pom">
+            <filterchain>
+                <tokenfilter>
+                    <replacestring from="@VERSION@" to="${maven.version}"/>
+                </tokenfilter>
+            </filterchain>
+        </copy>
+        <copy file="${moduleName}/${fileName}" tofile="generated/maven/${artifactName}.jar"/>
+        <zip destfile="generated/maven/${artifactName}-sources.jar">
+            <fileset dir="${moduleName}/src"/>
+            <!--fileset dir="${moduleName}/generated/src"/-->
+        </zip>
+    </target>
+
+    <target name="-install-maven-artifact-pom" depends="-setup-aether-antlib"
+            xmlns:artifact="antlib:org.eclipse.aether.ant">
+        <echo message="Installing Pom: ${artifactName}"/>
+        <artifact:install>
+            <artifact:pom file="generated/maven/${artifactName}.pom"/>
+        </artifact:install>
+    </target>
+
+    <target name="-install-maven-artifact-file" depends="-setup-aether-antlib"
+            xmlns:artifact="antlib:org.eclipse.aether.ant">
+        <echo message="Installing File: ${artifactName}"/>
+        <artifact:install>
+            <artifact:pom file="generated/maven/${artifactName}.pom"/>
+            <artifact:artifact file="generated/maven/${artifactName}.jar"/>
+            <artifact:artifact file="generated/maven/${artifactName}-sources.jar" classifier="sources"/>
+        </artifact:install>
+    </target>
+
+    <target name="-deploy-maven-artifact-pom" depends="-setup-aether-antlib"
+            xmlns:artifact="antlib:org.eclipse.aether.ant">
+        <echo message="Deploying Pom: ${artifactName} to ${maven.repositoryUrl}"/>
+        <artifact:deploy>
+            <artifact:remoterepo id="${maven.repositoryId}" url="${maven.repositoryUrl}"/>
+            <artifact:pom file="generated/maven/${artifactName}.pom"/>
+        </artifact:deploy>
+    </target>
+
+    <target name="-deploy-maven-artifact-file" depends="-setup-aether-antlib"
+            xmlns:artifact="antlib:org.eclipse.aether.ant">
+        <echo message="Deploying File: ${artifactName} to ${maven.repositoryUrl}"/>
+        <artifact:deploy>
+            <artifact:remoterepo id="${maven.repositoryId}" url="${maven.repositoryUrl}"/>
+            <artifact:pom file="generated/maven/${artifactName}.pom"/>
+            <artifact:artifact file="generated/maven/${artifactName}.jar"/>
+            <artifact:artifact file="generated/maven/${artifactName}-sources.jar" classifier="sources"/>
+        </artifact:deploy>
+    </target>
+
+</project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/529efb8e/maven/falcon-compiler-oem.pom
----------------------------------------------------------------------
diff --git a/maven/falcon-compiler-oem.pom b/maven/falcon-compiler-oem.pom
new file mode 100644
index 0000000..0e2f933
--- /dev/null
+++ b/maven/falcon-compiler-oem.pom
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>org.apache.flex.compiler</groupId>
+    <artifactId>falcon-compiler-oem</artifactId>
+    <version>@VERSION@</version>
+
+    <name>Apache Flex - Falcon Compiler OEM Layer</name>
+
+    <dependencies>
+    </dependencies>
+
+</project>

http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/529efb8e/maven/falcon-compiler.pom
----------------------------------------------------------------------
diff --git a/maven/falcon-compiler.pom b/maven/falcon-compiler.pom
new file mode 100644
index 0000000..0d6a126
--- /dev/null
+++ b/maven/falcon-compiler.pom
@@ -0,0 +1,78 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache</groupId>
+        <artifactId>apache</artifactId>
+        <version>14</version>
+    </parent>
+
+    <groupId>org.apache.flex.compiler</groupId>
+    <artifactId>falcon-compiler</artifactId>
+    <version>@VERSION@</version>
+
+    <name>Apache Flex - Falcon Compiler</name>
+    <description>The Apache Flex Falcon Compiler</description>
+
+    <mailingLists>
+        <mailingList>
+            <name>Apache Flex User List</name>
+            <subscribe>users-subscribe@flex.apache.org</subscribe>
+            <unsubscribe>users-unsubscribe@flex.apache.org</unsubscribe>
+            <post>users@flex.apache.org</post>
+            <archive>http://mail-archives.apache.org/mod_mbox/flex-users/</archive>
+        </mailingList>
+    </mailingLists>
+
+    <scm>
+        <connection>scm:svn:https://git-wip-us.apache.org/repos/asf/flex-falcon.git</connection>
+        <developerConnection>scm:svn:https://git-wip-us.apache.org/repos/asf/flex-falcon.git</developerConnection>
+        <url>https://git-wip-us.apache.org/repos/asf/flex-falcon.git</url>
+    </scm>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.flex.compiler</groupId>
+            <artifactId>falcon-compiler-oem</artifactId>
+            <version>@VERSION@</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-io</groupId>
+            <artifactId>commons-io</artifactId>
+            <version>2.4</version>
+        </dependency>
+        <dependency>
+            <groupId>commons-cli</groupId>
+            <artifactId>commons-cli</artifactId>
+            <version>1.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.antlr</groupId>
+            <artifactId>antlr</artifactId>
+            <version>3.5.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.sonatype.sisu</groupId>
+            <artifactId>sisu-guava</artifactId>
+            <version>0.9.9</version>
+        </dependency>
+        <dependency>
+            <groupId>net.sourceforge.jburg</groupId>
+            <artifactId>jburg</artifactId>
+            <version>1.10.1</version>
+        </dependency>
+        <dependency>
+            <groupId>de.jflex</groupId>
+            <artifactId>jflex</artifactId>
+            <version>1.6.0</version>
+        </dependency>
+        <dependency>
+            <groupId>org.b1.pack</groupId>
+            <artifactId>lzma-sdk-4j</artifactId>
+            <version>9.22.0</version>
+        </dependency>
+    </dependencies>
+
+</project>