1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>jvstm</groupId>
5 <artifactId>jvstm</artifactId>
6 <packaging>jar</packaging>
7 <version>2.0-SNAPSHOT</version>
8 <name>JVSTM (lock-free)</name>
9 <url>http://inesc-id-esw.github.com/JVSTM</url>
12 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
15 <version.guice>2.0</version.guice>
16 <version.junit>4.10</version.junit>
17 <version.jwormbench>1.0</version.jwormbench>
18 <version.maven.exec-plugin>1.2.1</version.maven.exec-plugin>
22 <connection>scm:git:git@github.com:inesc-id-esw/JVSTM.git</connection>
23 <developerConnection>scm:git:git@github.com:inesc-id-esw/JVSTM.git</developerConnection>
24 <url>http://inesc-id-esw.github.com/JVSTM</url>
32 <groupId>org.apache.maven.plugins</groupId>
33 <artifactId>maven-surefire-plugin</artifactId>
34 <version>2.13</version>
36 <argLine>-Xms1G -Xmx1G</argLine>
37 <systemPropertyVariables>
38 <jvstm.aom.reversion>true</jvstm.aom.reversion>
39 </systemPropertyVariables>
41 <!-- Add the defaults -->
42 <include>**/Test*.java</include>
43 <include>**/*Test.java</include>
44 <include>**/*TestCase.java</include>
46 <!-- Add the nonstandard names -->
47 <include>jvstm/test/point/utests/PointTestForAomDouble.java</include>
48 <include>jvstm/test/point/utests/PointTestForAomInt.java</include>
49 <include>jvstm/test/point/utests/PointTestForAomInteger.java</include>
50 <include>jvstm/test/point/utests/PointTestForAomShort.java</include>
51 <include>jvstm/test/point/utests/gc/AomGcTestForDoublePoint.java</include>
52 <include>jvstm/test/point/utests/gc/AomGcTestForIntegerPoint.java</include>
53 <include>jvstm/test/point/utests/gc/AomGcTestForIntPoint.java</include>
54 <include>jvstm/test/point/utests/gc/AomGcTestForShortPoint.java</include>
57 <exclude>jvstm/test/jwormbench/utest/*.java</exclude>
66 <artifactId>maven-release-plugin</artifactId>
67 <version>2.4.1</version>
69 <pushChanges>false</pushChanges>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-compiler-plugin</artifactId>
76 <version>2.0.2</version>
83 <!-- Generate the AtomicInstance and ProcessAtomicAnnotations immediatly after compiling -->
85 <groupId>org.codehaus.mojo</groupId>
86 <artifactId>exec-maven-plugin</artifactId>
87 <version>${version.maven.exec-plugin}</version>
88 <!-- Generate AtomicInstance -->
91 <id>generate-atomic-instance</id>
92 <phase>process-classes</phase>
97 <mainClass>pt.ist.esw.advice.GenerateAnnotationInstance</mainClass>
99 <argument>jvstm.Atomic</argument>
100 <argument>${project.build.outputDirectory}</argument>
104 <!-- Process Atomic Annotations in the main code -->
106 <id>process-annotations</id>
107 <phase>process-classes</phase>
112 <mainClass>pt.ist.esw.advice.ProcessAnnotations</mainClass>
114 <argument>-a</argument>
115 <argument>jvstm.Atomic</argument>
116 <argument>${project.build.outputDirectory}</argument>
120 <!-- Process Atomic Annotations in the test code -->
122 <id>process-test-annotations</id>
123 <phase>process-test-classes</phase>
128 <mainClass>pt.ist.esw.advice.ProcessAnnotations</mainClass>
130 <argument>-a</argument>
131 <argument>jvstm.Atomic</argument>
132 <argument>${project.build.testOutputDirectory}</argument>
144 <id>advice-repository</id>
145 <url>http://inesc-id-esw.github.com/advice/maven-repo/</url>
149 <url>file://${basedir}/local-maven-repo</url>
155 <groupId>pt.ist.esw</groupId>
156 <artifactId>advice</artifactId>
157 <version>1.5</version>
160 <groupId>junit</groupId>
161 <artifactId>junit</artifactId>
162 <version>${version.junit}</version>
166 <groupId>jwormbench</groupId>
167 <artifactId>jwormbench</artifactId>
168 <version>${version.jwormbench}</version>
172 <groupId>com.google.inject</groupId>
173 <artifactId>guice</artifactId>
174 <version>${version.guice}</version>
179 <distributionManagement>
181 <id>jvstm-release</id>
182 <url>https://fenix-ashes.ist.utl.pt/nexus/content/repositories/jvstm-release</url>
185 <id>jvstm-snapshot</id>
186 <url>https://fenix-ashes.ist.utl.pt/nexus/content/repositories/jvstm-snapshot</url>
187 </snapshotRepository>
188 </distributionManagement>