Browse Source

mavenizing testing-client module - wip

tags/V1_9_3RC1
Andy Clement 5 years ago
parent
commit
a303931ebc

+ 0
- 10
testing-client/.classpath View File

@@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="testsrc"/>
<classpathentry kind="src" path="/bridge"/>
<classpathentry kind="src" path="/util"/>
<classpathentry kind="lib" path="/lib/junit/junit.jar" sourcepath="/lib/junit/junit-src.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>

+ 0
- 2
testing-client/.cvsignore View File

@@ -1,2 +0,0 @@
bin
bintest

+ 0
- 1
testing-client/.isJava5 View File

@@ -1 +0,0 @@

+ 0
- 19
testing-client/.project View File

@@ -1,19 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>testing-client</name>
<comment></comment>
<projects>
<project>bridge</project>
<project>util</project>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

+ 0
- 6
testing-client/build.xml View File

@@ -1,6 +0,0 @@
<?xml version="1.0"?>
<!-- see ../build/*.html for explanation -->
<project name="testing-client" default="test" basedir=".">
<import file="${basedir}/../build/build.xml"/>
</project>


+ 30
- 0
testing-client/pom.xml View File

@@ -0,0 +1,30 @@
<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.aspectj</groupId>
<artifactId>aspectj-parent</artifactId>
<version>1.9.3.BUILD-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>

<artifactId>testing-client</artifactId>
<packaging>jar</packaging>
<name>testing-client</name>

<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>util</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>bridge</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

</project>

testing-client/src/org/aspectj/testing/Tester.java → testing-client/src/main/java/org/aspectj/testing/Tester.java View File


testing-client/src/org/aspectj/testing/server/TestServer.java → testing-client/src/main/java/org/aspectj/testing/server/TestServer.java View File


testing-client/testsrc/org/aspectj/testing/TesterTest.java → testing-client/src/test/java/org/aspectj/testing/TesterTest.java View File


testing-client/testsrc/org/aspectj/testing/TestingClientModuleTests.java → testing-client/src/test/java/org/aspectj/testing/TestingClientModuleTests.java View File


testing-client/testsrc/org/aspectj/testing/TestingTests.java → testing-client/src/test/java/org/aspectj/testing/TestingTests.java View File


testing-client/testsrc/org/aspectj/testing/server/TestServerTest.java → testing-client/src/test/java/org/aspectj/testing/server/TestServerTest.java View File


Loading…
Cancel
Save