Author: [email protected]
Date: Mon May 21 11:14:15 2012
New Revision: 2369
Log:
[AMDATUOPENSOCIAL-218] Added opensocial performance tests for 0.3.0
Added:
trunk/amdatu-performance-test/test-releases/opensocial-0.2.1/
- copied from r2365,
/trunk/amdatu-performance-test/test-releases/opensocial-0.2.0/
trunk/amdatu-performance-test/test-releases/opensocial-0.3.0/
trunk/amdatu-performance-test/test-releases/opensocial-0.3.0/pom.xml
trunk/amdatu-performance-test/test-releases/opensocial-0.3.0/src/
trunk/amdatu-performance-test/test-releases/opensocial-0.3.0/src/main/
trunk/amdatu-performance-test/test-releases/opensocial-0.3.0/src/main/assembly/
trunk/amdatu-performance-test/test-releases/opensocial-0.3.0/src/main/assembly/bin-component.xml
trunk/amdatu-performance-test/test-releases/opensocial-0.3.0/src/main/assembly/bin-release.xml
Modified:
trunk/amdatu-performance-test/test-releases/auth-0.3.0/src/main/assembly/bin-component.xml
trunk/amdatu-performance-test/test-releases/opensocial-0.2.0/
trunk/amdatu-performance-test/test-releases/pom.xml
Modified:
trunk/amdatu-performance-test/test-releases/auth-0.3.0/src/main/assembly/bin-component.xml
==============================================================================
---
trunk/amdatu-performance-test/test-releases/auth-0.3.0/src/main/assembly/bin-component.xml
(original)
+++
trunk/amdatu-performance-test/test-releases/auth-0.3.0/src/main/assembly/bin-component.xml
Mon May 21 11:14:15 2012
@@ -28,7 +28,7 @@
<dependencySet>
<outputDirectory>deploy</outputDirectory>
<includes>
-
<include>org.amdatu.auth:org.amdatu.auth.test.performance.bundle</include>
+ <include>org.amdatu:org.amdatu.test.performance.bundle</include>
</includes>
<unpack>false</unpack>
<useTransitiveDependencies>false</useTransitiveDependencies>
Added: trunk/amdatu-performance-test/test-releases/opensocial-0.3.0/pom.xml
==============================================================================
--- (empty file)
+++ trunk/amdatu-performance-test/test-releases/opensocial-0.3.0/pom.xml
Mon May 21 11:14:15 2012
@@ -0,0 +1,93 @@
+<?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.test.performance.releases</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </parent>
+ <artifactId>org.amdatu.opensocial.test.performance.release-0.3.0</artifactId>
+ <name>Amdatu OpenSocial - Performance Test release -
${current.version}</name>
+ <packaging>pom</packaging>
+
+ <properties>
+ <!-- Release version is the next release version (i.e 0.3.0), current
+ version is the actual version (i.e. 0.3.0-SNAPSHOT) -->
+ <release.version>0.3.0</release.version>
+ <current.version>${project.version}</current.version>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.amdatu</groupId>
+ <artifactId>org.amdatu.release.demo</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <classifier>opensocial-1.0.0-SNAPSHOT</classifier>
+ <scope>compile</scope>
+ <type>zip</type>
+ </dependency>
+ <dependency>
+ <groupId>org.amdatu</groupId>
+ <artifactId>org.amdatu.test.performance.bundle</artifactId>
+ <version>${current.version}</version>
+ <scope>compile</scope>
+ <type>bundle</type>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <defaultGoal>package</defaultGoal>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <version>2.2.1</version>
+ <configuration>
+ <finalName>opensocial-${release.version}</finalName>
+ <appendAssemblyId>true</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>
Added:
trunk/amdatu-performance-test/test-releases/opensocial-0.3.0/src/main/assembly/bin-component.xml
==============================================================================
--- (empty file)
+++
trunk/amdatu-performance-test/test-releases/opensocial-0.3.0/src/main/assembly/bin-component.xml
Mon May 21 11:14:15 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:org.amdatu.release.demo</include>
+ </includes>
+ <unpack>true</unpack>
+ <useTransitiveDependencies>false</useTransitiveDependencies>
+ </dependencySet>
+ <dependencySet>
+ <outputDirectory>deploy</outputDirectory>
+ <includes>
+ <include>org.amdatu:org.amdatu.test.performance.bundle</include>
+ </includes>
+ <unpack>false</unpack>
+ <useTransitiveDependencies>false</useTransitiveDependencies>
+ </dependencySet>
+ </dependencySets>
+</component>
\ No newline at end of file
Added:
trunk/amdatu-performance-test/test-releases/opensocial-0.3.0/src/main/assembly/bin-release.xml
==============================================================================
--- (empty file)
+++
trunk/amdatu-performance-test/test-releases/opensocial-0.3.0/src/main/assembly/bin-release.xml
Mon May 21 11:14:15 2012
@@ -0,0 +1,29 @@
+<?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>
+ <format>zip</format>
+ </formats>
+ <includeBaseDirectory>false</includeBaseDirectory>
+ <componentDescriptors>
+
<componentDescriptor>src/main/assembly/bin-component.xml</componentDescriptor>
+ </componentDescriptors>
+</assembly>
\ No newline at end of file
Modified: trunk/amdatu-performance-test/test-releases/pom.xml
==============================================================================
--- trunk/amdatu-performance-test/test-releases/pom.xml (original)
+++ trunk/amdatu-performance-test/test-releases/pom.xml Mon May 21 11:14:15 2012
@@ -30,7 +30,8 @@
<modules>
<module>auth-0.2.2</module>
<module>auth-0.3.0</module>
- <module>opensocial-0.2.0</module>
+ <module>opensocial-0.2.1</module>
+ <module>opensocial-0.3.0</module>
</modules>
</project>
_______________________________________________
Amdatu-commits mailing list
[email protected]
http://lists.amdatu.org/mailman/listinfo/amdatu-commits