You are viewing a plain text version of this content. The canonical link for it is here.
Posted to yoko-commits@incubator.apache.org by ad...@apache.org on 2007/08/11 07:34:00 UTC

svn commit: r564843 - in /incubator/yoko/trunk: api/pom.xml bindings/pom.xml core/pom.xml distribution/pom.xml maven-plugins/pom.xml pom.xml rmi-impl/pom.xml rmi-spec/pom.xml tools/pom.xml yoko-spec-corba/pom.xml

Author: adc
Date: Sat Aug 11 00:33:58 2007
New Revision: 564843

URL: http://svn.apache.org/viewvc?view=rev&rev=564843
Log:
YOKO-405 more cleanup

Modified:
    incubator/yoko/trunk/api/pom.xml
    incubator/yoko/trunk/bindings/pom.xml
    incubator/yoko/trunk/core/pom.xml
    incubator/yoko/trunk/distribution/pom.xml
    incubator/yoko/trunk/maven-plugins/pom.xml
    incubator/yoko/trunk/pom.xml
    incubator/yoko/trunk/rmi-impl/pom.xml
    incubator/yoko/trunk/rmi-spec/pom.xml
    incubator/yoko/trunk/tools/pom.xml
    incubator/yoko/trunk/yoko-spec-corba/pom.xml

Modified: incubator/yoko/trunk/api/pom.xml
URL: http://svn.apache.org/viewvc/incubator/yoko/trunk/api/pom.xml?view=diff&rev=564843&r1=564842&r2=564843
==============================================================================
--- incubator/yoko/trunk/api/pom.xml (original)
+++ incubator/yoko/trunk/api/pom.xml Sat Aug 11 00:33:58 2007
@@ -20,7 +20,6 @@
 <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>
-    <groupId>org.apache.yoko</groupId>
     <artifactId>yoko-api</artifactId>
     <packaging>jar</packaging>
     <name>Apache Yoko Public API</name>
@@ -31,10 +30,6 @@
         <version>1.0-incubating-SNAPSHOT</version>
     </parent> 
     
-    <properties>
-        <topDirectoryLocation>..</topDirectoryLocation>
-    </properties>         
-
     <dependencies>
         <dependency>
             <groupId>junit</groupId>
@@ -42,13 +37,6 @@
             <scope>test</scope>
         </dependency>
         
-        <!-- <dependency>
-            <groupId>easymock</groupId>
-            <artifactId>easymockclassextension</artifactId>
-            <version>2.0-20050821.154600</version>
-            <scope>test</scope>
-        </dependency> -->
-    
         <dependency>
             <groupId>org.apache.cxf</groupId>
             <artifactId>cxf-common-utilities</artifactId>
@@ -133,18 +121,6 @@
         </plugins>
     </build>
     
-  <ciManagement>
-    <system>continuum</system>
-    <url>http://vmbuild.apache.org/continuum</url>
-    <notifiers>
-      <notifier>
-        <configuration>
-          <address>yoko-commits@incubator.apache.org</address>
-        </configuration>
-      </notifier>
-    </notifiers>
-  </ciManagement>
-
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/yoko/trunk/api</connection>
     <developerConnection>scm:svn:https://${maven.username}@svn.apache.org/repos/asf/incubator/yoko/trunk/api</developerConnection>

Modified: incubator/yoko/trunk/bindings/pom.xml
URL: http://svn.apache.org/viewvc/incubator/yoko/trunk/bindings/pom.xml?view=diff&rev=564843&r1=564842&r2=564843
==============================================================================
--- incubator/yoko/trunk/bindings/pom.xml (original)
+++ incubator/yoko/trunk/bindings/pom.xml Sat Aug 11 00:33:58 2007
@@ -20,7 +20,6 @@
 <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>
-    <groupId>org.apache.yoko</groupId>
     <artifactId>yoko-bindings</artifactId>
     <packaging>jar</packaging>
     <name>Apache Yoko Bindings</name>
@@ -32,7 +31,6 @@
     </parent> 
     
     <properties>
-        <topDirectoryLocation>..</topDirectoryLocation>
         <file.url.prefix/>
     </properties>         
 
@@ -114,27 +112,6 @@
                 </executions>
              </plugin>
 
-<!--            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-javadoc-plugin</artifactId>
-                <version>${javadoc.version}</version>
-                <executions>
-                    <execution>
-                        <id>package</id>
-                        <phase>package</phase>
-                        <goals>
-                            <goal>jar</goal>
-                        </goals>
-                    </execution>
-                </executions>
-                <configuration>
-                    <attach>true</attach>
-                    <quiet>true</quiet>
-                    <bottom>-</bottom>
-                    <header>YOKO API</header>
-                    <footer>YOKO API</footer>
-                </configuration>
-            </plugin> -->
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-checkstyle-plugin</artifactId>
@@ -486,17 +463,6 @@
              </properties>
         </profile>
     </profiles>
-  <ciManagement>
-    <system>continuum</system>
-    <url>http://vmbuild.apache.org/continuum</url>
-    <notifiers>
-      <notifier>
-        <configuration>
-          <address>yoko-commits@incubator.apache.org</address>
-        </configuration>
-      </notifier>
-    </notifiers>
-  </ciManagement>
 
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/yoko/trunk/bindings</connection>

Modified: incubator/yoko/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/yoko/trunk/core/pom.xml?view=diff&rev=564843&r1=564842&r2=564843
==============================================================================
--- incubator/yoko/trunk/core/pom.xml (original)
+++ incubator/yoko/trunk/core/pom.xml Sat Aug 11 00:33:58 2007
@@ -19,7 +19,6 @@
 -->
 <project>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.yoko</groupId>
   <artifactId>yoko-core</artifactId>
   <name>Apache Yoko Core</name>
   <packaging>jar</packaging>
@@ -167,18 +166,6 @@
       </plugin>
     </plugins>
   </reporting>
-
-  <ciManagement>
-    <system>continuum</system>
-    <url>http://vmbuild.apache.org/continuum</url>
-    <notifiers>
-      <notifier>
-        <configuration>
-          <address>yoko-commits@incubator.apache.org</address>
-        </configuration>
-      </notifier>
-    </notifiers>
-  </ciManagement>
 
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/yoko/trunk/core</connection>

Modified: incubator/yoko/trunk/distribution/pom.xml
URL: http://svn.apache.org/viewvc/incubator/yoko/trunk/distribution/pom.xml?view=diff&rev=564843&r1=564842&r2=564843
==============================================================================
--- incubator/yoko/trunk/distribution/pom.xml (original)
+++ incubator/yoko/trunk/distribution/pom.xml Sat Aug 11 00:33:58 2007
@@ -20,10 +20,8 @@
 <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>
-    <groupId>org.apache.yoko</groupId>
     <artifactId>yoko-distribution</artifactId>
     <name>Apache Yoko Distribution</name>
-    <url>http://www.apache.org/incubator/yoko</url>
     <packaging>jar</packaging>
 
     <parent>
@@ -32,11 +30,6 @@
         <version>1.0-incubating-SNAPSHOT</version>
     </parent>
 
-    <properties>
-        <topDirectoryLocation>..</topDirectoryLocation>
-        <java.source.version>1.4</java.source.version>
-    </properties>
-
     <dependencies>
         <dependency>
             <groupId>org.apache.yoko</groupId>
@@ -190,17 +183,6 @@
             </build>
         </profile>
     </profiles>
-  <ciManagement>
-    <system>continuum</system>
-    <url>http://vmbuild.apache.org/continuum</url>
-    <notifiers>
-      <notifier>
-        <configuration>
-          <address>yoko-commits@incubator.apache.org</address>
-        </configuration>
-      </notifier>
-    </notifiers>
-  </ciManagement>
 
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/yoko/trunk/distribution</connection>

Modified: incubator/yoko/trunk/maven-plugins/pom.xml
URL: http://svn.apache.org/viewvc/incubator/yoko/trunk/maven-plugins/pom.xml?view=diff&rev=564843&r1=564842&r2=564843
==============================================================================
--- incubator/yoko/trunk/maven-plugins/pom.xml (original)
+++ incubator/yoko/trunk/maven-plugins/pom.xml Sat Aug 11 00:33:58 2007
@@ -19,7 +19,6 @@
 -->
 <project>
   <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.yoko</groupId>
   <artifactId>yoko-maven-plugins</artifactId>
   <name>Apache Yoko Maven plugins</name>
   <packaging>maven-plugin</packaging>
@@ -98,17 +97,6 @@
       </plugin>
     </plugins>
   </reporting>
-  <ciManagement>
-    <system>continuum</system>
-    <url>http://vmbuild.apache.org/continuum</url>
-    <notifiers>
-      <notifier>
-        <configuration>
-          <address>yoko-commits@incubator.apache.org</address>
-        </configuration>
-      </notifier>
-    </notifiers>
-  </ciManagement>
 
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/yoko/trunk/maven-plugins</connection>

Modified: incubator/yoko/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/yoko/trunk/pom.xml?view=diff&rev=564843&r1=564842&r2=564843
==============================================================================
--- incubator/yoko/trunk/pom.xml (original)
+++ incubator/yoko/trunk/pom.xml Sat Aug 11 00:33:58 2007
@@ -81,7 +81,6 @@
         <site.version>2.0-beta-4</site.version>
         <compile.forked>false</compile.forked>
         <compile.flags>-Xlint:unchecked,deprecation,fallthrough,finally</compile.flags>
-        <topDirectoryLocation>.</topDirectoryLocation>
         <no.checkstyle>false</no.checkstyle>
         <no.pmd>false</no.pmd>
         <notice.dir>.</notice.dir>
@@ -342,20 +341,9 @@
                 </includes>
             </testResource>
         </testResources>
+
         <plugins>
             <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <version>${compiler.version}</version>
-                <configuration>
-                    <source>${java.source.version}</source>
-                    <target>${java.source.version}</target>
-                    <showDeprecation>true</showDeprecation>
-                    <fork>${compile.forked}</fork>
-                    <compilerArgument>${compile.flags}</compilerArgument>
-                </configuration>
-            </plugin>
-            <plugin>
                 <artifactId>maven-remote-resources-plugin</artifactId>
                 <version>1.0-alpha-5</version>
                 <executions>
@@ -377,10 +365,23 @@
                 </executions>
             </plugin>
         </plugins>
+
         <defaultGoal>install</defaultGoal>
 
         <pluginManagement>
             <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-compiler-plugin</artifactId>
+                    <version>${compiler.version}</version>
+                    <configuration>
+                        <source>${java.source.version}</source>
+                        <target>${java.source.version}</target>
+                        <showDeprecation>true</showDeprecation>
+                        <fork>${compile.forked}</fork>
+                        <compilerArgument>${compile.flags}</compilerArgument>
+                    </configuration>
+                </plugin>
                 <plugin>
                     <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-jar-plugin</artifactId>

Modified: incubator/yoko/trunk/rmi-impl/pom.xml
URL: http://svn.apache.org/viewvc/incubator/yoko/trunk/rmi-impl/pom.xml?view=diff&rev=564843&r1=564842&r2=564843
==============================================================================
--- incubator/yoko/trunk/rmi-impl/pom.xml (original)
+++ incubator/yoko/trunk/rmi-impl/pom.xml Sat Aug 11 00:33:58 2007
@@ -24,11 +24,10 @@
         <artifactId>yoko</artifactId>
         <version>1.0-incubating-SNAPSHOT</version>
     </parent>
-    <groupId>org.apache.yoko</groupId>
     <artifactId>yoko-rmi-impl</artifactId>
     <packaging>jar</packaging>
     <name>Apache Yoko RMI Implementation</name>
-    <url>http://maven.apache.org</url>
+
     <dependencies>
     <!--  The JDK CORBA classes are also sufficient, so it is not necessary to add this dependency as
     an endorsed standard -->
@@ -62,17 +61,6 @@
        </plugin>
       </plugins>
     </build>
-  <ciManagement>
-    <system>continuum</system>
-    <url>http://vmbuild.apache.org/continuum</url>
-    <notifiers>
-      <notifier>
-        <configuration>
-          <address>yoko-commits@incubator.apache.org</address>
-        </configuration>
-      </notifier>
-    </notifiers>
-  </ciManagement>
 
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/yoko/trunk/rmi-impl</connection>

Modified: incubator/yoko/trunk/rmi-spec/pom.xml
URL: http://svn.apache.org/viewvc/incubator/yoko/trunk/rmi-spec/pom.xml?view=diff&rev=564843&r1=564842&r2=564843
==============================================================================
--- incubator/yoko/trunk/rmi-spec/pom.xml (original)
+++ incubator/yoko/trunk/rmi-spec/pom.xml Sat Aug 11 00:33:58 2007
@@ -24,11 +24,10 @@
         <artifactId>yoko</artifactId>
         <version>1.0-incubating-SNAPSHOT</version>
     </parent>
-    <groupId>org.apache.yoko</groupId>
     <artifactId>yoko-rmi-spec</artifactId>
     <packaging>jar</packaging>
     <name>Apache Yoko RMI Spec</name>
-    <url>http://maven.apache.org</url>
+
     <dependencies>
     <!--  The JDK CORBA classes are also sufficient, so it is not necessary to add this dependency as
     an endorsed standard -->
@@ -54,17 +53,6 @@
        </plugin>
       </plugins>
     </build>
-  <ciManagement>
-    <system>continuum</system>
-    <url>http://vmbuild.apache.org/continuum</url>
-    <notifiers>
-      <notifier>
-        <configuration>
-          <address>yoko-commits@incubator.apache.org</address>
-        </configuration>
-      </notifier>
-    </notifiers>
-  </ciManagement>
 
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/yoko/trunk/rmi-spec</connection>

Modified: incubator/yoko/trunk/tools/pom.xml
URL: http://svn.apache.org/viewvc/incubator/yoko/trunk/tools/pom.xml?view=diff&rev=564843&r1=564842&r2=564843
==============================================================================
--- incubator/yoko/trunk/tools/pom.xml (original)
+++ incubator/yoko/trunk/tools/pom.xml Sat Aug 11 00:33:58 2007
@@ -19,7 +19,6 @@
 -->
 <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>
-    <groupId>org.apache.yoko</groupId>
     <artifactId>yoko-tools</artifactId>
     <packaging>jar</packaging>
     <name>Apache Yoko Command Line Tools</name>
@@ -30,11 +29,6 @@
         <version>1.0-incubating-SNAPSHOT</version>
     </parent>
 
-    <properties>
-        <topDirectoryLocation>..</topDirectoryLocation>
-        
-    </properties>
-
     <dependencies>
         <dependency>
             <groupId>junit</groupId>
@@ -146,18 +140,6 @@
       </plugin>
     </plugins>
   </reporting>
-
-  <ciManagement>
-    <system>continuum</system>
-    <url>http://vmbuild.apache.org/continuum</url>
-    <notifiers>
-      <notifier>
-        <configuration>
-          <address>yoko-commits@incubator.apache.org</address>
-        </configuration>
-      </notifier>
-    </notifiers>
-  </ciManagement>
 
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/yoko/trunk/tools</connection>

Modified: incubator/yoko/trunk/yoko-spec-corba/pom.xml
URL: http://svn.apache.org/viewvc/incubator/yoko/trunk/yoko-spec-corba/pom.xml?view=diff&rev=564843&r1=564842&r2=564843
==============================================================================
--- incubator/yoko/trunk/yoko-spec-corba/pom.xml (original)
+++ incubator/yoko/trunk/yoko-spec-corba/pom.xml Sat Aug 11 00:33:58 2007
@@ -26,12 +26,10 @@
         <artifactId>yoko</artifactId>
         <version>1.0-incubating-SNAPSHOT</version>
     </parent>
-    <groupId>org.apache.yoko</groupId>
     <artifactId>yoko-spec-corba</artifactId>
     <packaging>jar</packaging>
-    <version>1.0-incubating-SNAPSHOT</version>
     <name>Apache Yoko CORBA Spec</name>
-    <url>http://maven.apache.org</url>
+
     <dependencies>
         <dependency>
             <groupId>junit</groupId>
@@ -223,17 +221,6 @@
             </plugin>
         </plugins>
     </build>
-  <ciManagement>
-    <system>continuum</system>
-    <url>http://vmbuild.apache.org/continuum</url>
-    <notifiers>
-      <notifier>
-        <configuration>
-          <address>yoko-commits@incubator.apache.org</address>
-        </configuration>
-      </notifier>
-    </notifiers>
-  </ciManagement>
 
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/yoko/trunk/yoko-spec-corba</connection>