Formatting and fixing identention

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1343000 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
lresende 2012-05-27 06:25:44 +00:00
parent b61b4c8513
commit ed8250c3d8

View file

@ -27,19 +27,19 @@
</parent> </parent>
<artifactId>sample-store</artifactId> <artifactId>sample-store</artifactId>
<name>Apache Tuscany SCA Sample Getting Started Online Store</name> <name>Apache Tuscany SCA Sample Getting Started Online Store</name>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.apache.tuscany.sca</groupId> <groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-base-runtime-pom</artifactId> <artifactId>tuscany-base-runtime-pom</artifactId>
<version>2.0-SNAPSHOT</version> <version>2.0-SNAPSHOT</version>
<type>pom</type> <type>pom</type>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.tuscany.sca</groupId> <groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-data-api</artifactId> <artifactId>tuscany-data-api</artifactId>
<version>2.0-SNAPSHOT</version> <version>2.0-SNAPSHOT</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.tuscany.sca</groupId> <groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-binding-atom-runtime</artifactId> <artifactId>tuscany-binding-atom-runtime</artifactId>
@ -94,27 +94,27 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<finalName>${project.artifactId}</finalName> <finalName>${project.artifactId}</finalName>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId> <artifactId>exec-maven-plugin</artifactId>
<version>1.1.1</version> <version>1.1.1</version>
<executions> <executions>
<execution> <execution>
<goals> <goals>
<goal>java</goal> <goal>java</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
<configuration> <configuration>
<classpathScope>test</classpathScope> <classpathScope>test</classpathScope>
<mainClass>store.StoreTestCase</mainClass> <mainClass>store.StoreTestCase</mainClass>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>