brett 2005/03/12 01:15:41
Modified: m2 ejb-core.pom ejb-group.pom
Log:
set the plugin config
Revision Changes Path
1.2 +13 -1 openejb/m2/ejb-core.pom
Index: ejb-core.pom
===================================================================
RCS file: /scm/openejb/openejb/m2/ejb-core.pom,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -u -r1.1 -r1.2
--- ejb-core.pom 12 Mar 2005 05:50:43 -0000 1.1
+++ ejb-core.pom 12 Mar 2005 06:15:41 -0000 1.2
@@ -367,5 +367,17 @@
<includes>*.xsd,*.dtd</includes>
</resource>
</resources>
+ <!-- current m2 bug - this shouldn't be required here -->
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+ </plugins>
</build>
</project>
+
1.3 +11 -8 openejb/m2/ejb-group.pom
Index: ejb-group.pom
===================================================================
RCS file: /scm/openejb/openejb/m2/ejb-group.pom,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -u -r1.2 -r1.3
--- ejb-group.pom 12 Mar 2005 05:50:43 -0000 1.2
+++ ejb-group.pom 12 Mar 2005 06:15:41 -0000 1.3
@@ -66,13 +66,16 @@
<build>
<pluginManagement>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.4</source>
- <target>1.4</target>
- </configuration>
- </plugin>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <configuration>
+ <source>1.4</source>
+ <target>1.4</target>
+ </configuration>
+ </plugin>
+ </plugins>
</pluginManagement>
</build>