Author: ivo...@gmail.com Date: Fri May 11 10:14:07 2012 New Revision: 2330 Log:
Added: sandbox/ivol/amdate-development/ sandbox/ivol/amdate-development/ama/ sandbox/ivol/amdate-development/ama/pom.xml sandbox/ivol/amdate-development/ama/src/ sandbox/ivol/amdate-development/ama/src/main/ sandbox/ivol/amdate-development/ama/src/main/assembly/ sandbox/ivol/amdate-development/ama/src/main/assembly/bin-component.xml sandbox/ivol/amdate-development/ama/src/main/assembly/bin-release.xml sandbox/ivol/amdate-development/ama/src/main/resources/ sandbox/ivol/amdate-development/ama/src/main/resources/run.bat sandbox/ivol/amdate-development/ams/ sandbox/ivol/amdate-development/ams/pom.xml sandbox/ivol/amdate-development/ams/src/ sandbox/ivol/amdate-development/ams/src/main/ sandbox/ivol/amdate-development/ams/src/main/assembly/ sandbox/ivol/amdate-development/ams/src/main/assembly/bin-component.xml sandbox/ivol/amdate-development/ams/src/main/assembly/bin-release.xml sandbox/ivol/amdate-development/ams/src/main/resources/ sandbox/ivol/amdate-development/ams/src/main/resources/AMS.url sandbox/ivol/amdate-development/ams/src/main/resources/readme.txt sandbox/ivol/amdate-development/pom.xml Added: sandbox/ivol/amdate-development/ama/pom.xml ============================================================================== --- (empty file) +++ sandbox/ivol/amdate-development/ama/pom.xml Fri May 11 10:14:07 2012 @@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2010, 2011 The Amdatu Foundation + + Licensed 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.verning 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> + <parent> + <groupId>org.amdatu</groupId> + <artifactId>org.amdatu.dev</artifactId> + <version>0.3.0-SNAPSHOT</version> + </parent> + <artifactId>org.amdatu.dev.ama</artifactId> + <packaging>pom</packaging> + <name>Amdatu Development - AMA</name> + + <dependencies> + <dependency> + <groupId>org.apache.ace</groupId> + <artifactId>org.apache.ace.launcher</artifactId> + <version>${org.amdatu.ama.version}</version> + <type>jar</type> + <exclusions> + <exclusion> + <groupId>org.apache.felix</groupId> + <artifactId>org.apache.felix.deploymentadmin</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> + + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <version>2.2.1</version> + <configuration> + <finalName>ama-${project.version}</finalName> + <appendAssemblyId>false</appendAssemblyId> + </configuration> + </plugin> + </plugins> + </pluginManagement> + + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <executions> + <execution> + <id>create-release</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <appendAssemblyId>false</appendAssemblyId> + <descriptors> + <descriptor>src/main/assembly/bin-release.xml</descriptor> + </descriptors> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> \ No newline at end of file Added: sandbox/ivol/amdate-development/ama/src/main/assembly/bin-component.xml ============================================================================== --- (empty file) +++ sandbox/ivol/amdate-development/ama/src/main/assembly/bin-component.xml Fri May 11 10:14:07 2012 @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2010, 2011 The Amdatu Foundation + + Licensed 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.verning permissions and limitations + under the License. +--> +<component xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/component/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/component/1.1.2 http://maven.apache.org/xsd/component-1.1.2.xsd"> + <dependencySets> + <dependencySet> + <includes> + <include>org.apache.ace:org.apache.ace.launcher</include> + </includes> + <unpack>false</unpack> + <useTransitiveDependencies>false</useTransitiveDependencies> + </dependencySet> + </dependencySets> + + <fileSets> + <fileSet> + <directory>src/main/resources</directory> + <outputDirectory>.</outputDirectory> + <filtered>true</filtered> + </fileSet> + </fileSets> +</component> \ No newline at end of file Added: sandbox/ivol/amdate-development/ama/src/main/assembly/bin-release.xml ============================================================================== --- (empty file) +++ sandbox/ivol/amdate-development/ama/src/main/assembly/bin-release.xml Fri May 11 10:14:07 2012 @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2010, 2011 The Amdatu Foundation + + Licensed 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.verning permissions and limitations + under the License. +--> +<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> + <id>bin</id> + <formats> + <format>dir</format> + </formats> + <includeBaseDirectory>false</includeBaseDirectory> + <componentDescriptors> + <componentDescriptor>src/main/assembly/bin-component.xml</componentDescriptor> + </componentDescriptors> +</assembly> \ No newline at end of file Added: sandbox/ivol/amdate-development/ama/src/main/resources/run.bat ============================================================================== --- (empty file) +++ sandbox/ivol/amdate-development/ama/src/main/resources/run.bat Fri May 11 10:14:07 2012 @@ -0,0 +1 @@ +java -jar org.apache.ace.launcher-${org.amdatu.ama.version}.jar \ No newline at end of file Added: sandbox/ivol/amdate-development/ams/pom.xml ============================================================================== --- (empty file) +++ sandbox/ivol/amdate-development/ams/pom.xml Fri May 11 10:14:07 2012 @@ -0,0 +1,76 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2010, 2011 The Amdatu Foundation + + Licensed 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.verning 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> + <parent> + <groupId>org.amdatu</groupId> + <artifactId>org.amdatu.dev</artifactId> + <version>0.3.0-SNAPSHOT</version> + </parent> + <artifactId>org.amdatu.dev.ams</artifactId> + <packaging>pom</packaging> + <name>Amdatu Development - AMS</name> + + <dependencies> + <dependency> + <groupId>org.amdatu.mgmtserver</groupId> + <artifactId>org.amdatu.mgmtserver</artifactId> + <version>${org.amdatu.ams.version}</version> + <type>zip</type> + </dependency> + </dependencies> + + + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <version>2.2.1</version> + <configuration> + <finalName>ams-${project.version}</finalName> + <appendAssemblyId>false</appendAssemblyId> + </configuration> + </plugin> + </plugins> + </pluginManagement> + + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <executions> + <execution> + <id>create-release</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <appendAssemblyId>false</appendAssemblyId> + <descriptors> + <descriptor>src/main/assembly/bin-release.xml</descriptor> + </descriptors> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> \ No newline at end of file Added: sandbox/ivol/amdate-development/ams/src/main/assembly/bin-component.xml ============================================================================== --- (empty file) +++ sandbox/ivol/amdate-development/ams/src/main/assembly/bin-component.xml Fri May 11 10:14:07 2012 @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2010, 2011 The Amdatu Foundation + + Licensed 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.verning permissions and limitations + under the License. +--> +<component xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/component/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/component/1.1.2 http://maven.apache.org/xsd/component-1.1.2.xsd"> + <dependencySets> + <dependencySet> + <includes> + <include>org.amdatu.mgmtserver:org.amdatu.mgmtserver</include> + </includes> + <unpack>true</unpack> + <useTransitiveDependencies>false</useTransitiveDependencies> + </dependencySet> + </dependencySets> + + <fileSets> + <fileSet> + <directory>src/main/resources</directory> + <outputDirectory>.</outputDirectory> + <filtered>false</filtered> + </fileSet> + </fileSets> +</component> \ No newline at end of file Added: sandbox/ivol/amdate-development/ams/src/main/assembly/bin-release.xml ============================================================================== --- (empty file) +++ sandbox/ivol/amdate-development/ams/src/main/assembly/bin-release.xml Fri May 11 10:14:07 2012 @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2010, 2011 The Amdatu Foundation + + Licensed 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.verning permissions and limitations + under the License. +--> +<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> + <id>bin</id> + <formats> + <format>dir</format> + </formats> + <includeBaseDirectory>false</includeBaseDirectory> + <componentDescriptors> + <componentDescriptor>src/main/assembly/bin-component.xml</componentDescriptor> + </componentDescriptors> +</assembly> \ No newline at end of file Added: sandbox/ivol/amdate-development/ams/src/main/resources/AMS.url ============================================================================== --- (empty file) +++ sandbox/ivol/amdate-development/ams/src/main/resources/AMS.url Fri May 11 10:14:07 2012 @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=http://localhost:8080/ace Added: sandbox/ivol/amdate-development/ams/src/main/resources/readme.txt ============================================================================== --- (empty file) +++ sandbox/ivol/amdate-development/ams/src/main/resources/readme.txt Fri May 11 10:14:07 2012 @@ -0,0 +1 @@ +AMS Username/password = d/f \ No newline at end of file Added: sandbox/ivol/amdate-development/pom.xml ============================================================================== --- (empty file) +++ sandbox/ivol/amdate-development/pom.xml Fri May 11 10:14:07 2012 @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2010, 2011 The Amdatu Foundation + + Licensed 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.verning 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> + <parent> + <groupId>org.amdatu</groupId> + <artifactId>amdatu</artifactId> + <version>6-RC2</version> + <relativePath>../amdatu-parent/pom.xml</relativePath> + </parent> + <groupId>org.amdatu</groupId> + <artifactId>org.amdatu.dev</artifactId> + <version>0.3.0-SNAPSHOT</version> + <packaging>pom</packaging> + <name>Amdatu Development Server</name> + + <properties> + <org.amdatu.ams.version>0.4.0-RC2</org.amdatu.ams.version> + <org.amdatu.ama.version>0.8.1-r1333467</org.amdatu.ama.version> + </properties> + + <repositories> + <repository> + <id>amdatu.releases</id> + <name>Amdatu Release Repository</name> + <url>http://repository.amdatu.org/releases</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + <repository> + <id>amdatu.maven2</id> + <name>Amdatu maven2 Repository</name> + <url>http://repository.amdatu.org/maven2</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>false</enabled> + </snapshots> + </repository> + </repositories> + + <modules> + <module>ama</module> + <module>ams</module> + <module>distributions</module> + </modules> + +</project> \ No newline at end of file _______________________________________________ Amdatu-commits mailing list Amdatu-commits@amdatu.org http://lists.amdatu.org/mailman/listinfo/amdatu-commits