Author: mattmann
Date: Tue Apr 28 17:15:53 2015
New Revision: 1676577

URL: http://svn.apache.org/r1676577
Log:
Fix for OODT-844 Scala maven plugin for streaming only contributed by Jane 
Wyngaard <[email protected]>. this closes #20.

Modified:
    oodt/trunk/CHANGES.txt
    oodt/trunk/core/pom.xml
    oodt/trunk/streaming/resource/pom.xml

Modified: oodt/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/oodt/trunk/CHANGES.txt?rev=1676577&r1=1676576&r2=1676577&view=diff
==============================================================================
--- oodt/trunk/CHANGES.txt (original)
+++ oodt/trunk/CHANGES.txt Tue Apr 28 17:15:53 2015
@@ -2,6 +2,8 @@ Apache OODT Change Log
 ======================
 Release 0.9 - Current Development
 
+* OODT-844 Scala maven plugin for streaming only (Jane Wyngaard via mattmann)
+
 * OODT-829 Implement an Apache Tika based Server Side Extractor (Radu Manole 
via mattmann)
 
 * OODT-826 Add the capability to check external preconditions before ingesting 
a file.

Modified: oodt/trunk/core/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/core/pom.xml?rev=1676577&r1=1676576&r2=1676577&view=diff
==============================================================================
--- oodt/trunk/core/pom.xml (original)
+++ oodt/trunk/core/pom.xml Tue Apr 28 17:15:53 2015
@@ -321,32 +321,6 @@ the License.
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <groupId>net.alchim31.maven</groupId>
-                <artifactId>scala-maven-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <id>compile</id>
-                        <goals>
-                            <goal>compile</goal>
-                        </goals>
-                        <phase>compile</phase>
-                    </execution>
-                    <execution>
-                        <id>test-compile</id>
-                            <goals>
-                                <goal>testCompile</goal>
-                            </goals>
-                        <phase>test-compile</phase>
-                    </execution>
-                    <execution>
-                        <phase>process-resources</phase>
-                        <goals>
-                            <goal>compile</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
         </plugins>
     </build>
     <dependencyManagement>

Modified: oodt/trunk/streaming/resource/pom.xml
URL: 
http://svn.apache.org/viewvc/oodt/trunk/streaming/resource/pom.xml?rev=1676577&r1=1676576&r2=1676577&view=diff
==============================================================================
--- oodt/trunk/streaming/resource/pom.xml (original)
+++ oodt/trunk/streaming/resource/pom.xml Tue Apr 28 17:15:53 2015
@@ -52,6 +52,32 @@ the License.
             </includes>
         </configuration>
       </plugin>
+      <plugin>
+          <groupId>net.alchim31.maven</groupId>
+          <artifactId>scala-maven-plugin</artifactId>
+          <executions>
+              <execution>
+                  <id>compile</id>
+                  <goals>
+                      <goal>compile</goal>
+                  </goals>
+                  <phase>compile</phase>
+              </execution>
+              <execution>
+                  <id>test-compile</id>
+                      <goals>
+                          <goal>testCompile</goal>
+                      </goals>
+                  <phase>test-compile</phase>
+              </execution>
+              <execution>
+                  <phase>process-resources</phase>
+                  <goals>
+                      <goal>compile</goal>
+                  </goals>
+              </execution>
+          </executions>
+      </plugin>
     </plugins>
   </build>
   <dependencies>


Reply via email to