- Updated the gitignore and added the archetype config files
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/91cf13f6 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/91cf13f6 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/91cf13f6 Branch: refs/heads/feature-autobuild/maven-archetypes Commit: 91cf13f6c22f25c8e37b7054ca3fb62b0022967d Parents: 7cbbc42 Author: Christofer Dutz <[email protected]> Authored: Fri Sep 30 09:39:34 2016 +0200 Committer: Christofer Dutz <[email protected]> Committed: Fri Sep 30 09:39:34 2016 +0200 ---------------------------------------------------------------------- .gitignore | 1 - .../main/resources/META-INF/maven/archetype.xml | 27 ++++++++++++++++++ .../main/resources/META-INF/maven/archetype.xml | 30 ++++++++++++++++++++ 3 files changed, 57 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/91cf13f6/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore index 95222f0..96c39ca 100644 --- a/.gitignore +++ b/.gitignore @@ -45,7 +45,6 @@ in/ swfobject/ flex2/ thirdparty/ -META-INF/ 3.0.33/ 3.0.33 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/91cf13f6/archetypes/flexjs-simple-application-archetype/src/main/resources/META-INF/maven/archetype.xml ---------------------------------------------------------------------- diff --git a/archetypes/flexjs-simple-application-archetype/src/main/resources/META-INF/maven/archetype.xml b/archetypes/flexjs-simple-application-archetype/src/main/resources/META-INF/maven/archetype.xml new file mode 100644 index 0000000..0daccb1 --- /dev/null +++ b/archetypes/flexjs-simple-application-archetype/src/main/resources/META-INF/maven/archetype.xml @@ -0,0 +1,27 @@ +<?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. + +--> +<archetype xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype/1.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-archetype-plugin/archetype/1.0.0 http://maven.apache.org/xsd/archetype-1.0.0.xsd"> + <id>flexjs-simple-application-archetype</id> + <resources> + <resource>src/main/java/App.java</resource> + </resources> +</archetype> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/91cf13f6/archetypes/flexjs-simple-library-archetype/src/main/resources/META-INF/maven/archetype.xml ---------------------------------------------------------------------- diff --git a/archetypes/flexjs-simple-library-archetype/src/main/resources/META-INF/maven/archetype.xml b/archetypes/flexjs-simple-library-archetype/src/main/resources/META-INF/maven/archetype.xml new file mode 100644 index 0000000..561c04e --- /dev/null +++ b/archetypes/flexjs-simple-library-archetype/src/main/resources/META-INF/maven/archetype.xml @@ -0,0 +1,30 @@ +<?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. + +--> +<archetype xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype/1.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-archetype-plugin/archetype/1.0.0 http://maven.apache.org/xsd/archetype-1.0.0.xsd"> + <id>flexjs-simple-library-archetype</id> + <resources> + <resource>src/main/java/App.java</resource> + </resources> + <testResources> + <resource>src/test/java/AppTest.java</resource> + </testResources> +</archetype>
