You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by pe...@apache.org on 2018/12/15 06:23:12 UTC

svn commit: r1848979 [2/2] - in /river/jtsk/modules/modularize/apache-river: browser/ browser/src/ browser/src/main/ browser/src/main/java/ browser/src/main/javadoc/ browser/src/main/resources/ extra/ extra/src/ extra/src/main/ extra/src/main/java/ gro...

Added: river/jtsk/modules/modularize/apache-river/river-jrmp/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-jrmp/pom.xml?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-jrmp/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-jrmp/pom.xml Sat Dec 15 06:23:11 2018
@@ -0,0 +1,203 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+~ Copyright (C) 2014 the original author or authors.
+~
+~ Licensed under the Apache License, Version 2.0 (the "License");
+~ you may not use this file except in compliance with the License.
+~ You may obtain a copy of the License at
+~
+~ http://www.apache.org/licenses/LICENSE-2.0
+~
+~ Unless required by applicable law or agreed to in writing, software
+~ distributed under the License is distributed on an "AS IS" BASIS,
+~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+~ See the License for the specific language governing permissions and
+~ limitations under the License.
+-->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache</groupId>
+        <artifactId>river</artifactId>
+        <version>3.0-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.river</groupId>
+    <artifactId>river-jrmp</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Module :: River JRMP</name>
+    <description>River JRMP Exporter
+    </description>
+
+    <properties>
+        <high.scale.lib.version>1.0.3</high.scale.lib.version>
+    </properties>
+
+    <dependencies>  
+		 
+         <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-platform</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-jeri</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+         <dependency>
+             <groupId>${project.groupId}</groupId>
+             <artifactId>river-resources</artifactId>
+             <version>${project.version}</version>
+         </dependency>     
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.6</version>
+            <scope>test</scope>
+        </dependency>
+        
+		
+    </dependencies>
+
+    <build>
+        <plugins>     
+            <plugin>
+              <groupId>biz.aQute.bnd</groupId>
+              <artifactId>bnd-maven-plugin</artifactId>
+              <executions>
+                    <execution>
+                        <goals>
+                            <goal>bnd-process</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>     
+            <plugin>
+                <groupId>org.owasp</groupId>
+                <artifactId>dependency-check-maven</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>   
+            <!--<plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <version>2.2</version>
+                <configuration>
+                    <archive>                
+                        <manifestEntries>
+                                <Implementation-Version>${project.version}</Implementation-Version>
+                            <Class-Path>river-resources-${project.version}.jar high-scale-lib-${high.scale.lib.version}.jar</Class-Path>
+                        </manifestEntries>
+                    </archive>
+                </configuration>
+            </plugin>-->
+
+            <!--<plugin>
+               <groupId>org.codehaus.gmaven</groupId>
+               <artifactId>gmaven-plugin</artifactId>
+               <configuration>
+                    <providerSelection>${gmavenProviderSelection}</providerSelection>
+                    <source/>
+                </configuration>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>generateStubs</goal>
+                            <goal>compile</goal>
+                            <goal>generateTestStubs</goal>
+                            <goal>testCompile</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.codehaus.groovy</groupId>
+                        <artifactId>groovy-all</artifactId>
+                        <version>${groovy.version}</version>
+                    </dependency>
+                </dependencies>
+            </plugin>-->					
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <version>2.1.1</version>
+                <executions>
+                    <execution>
+                        <id>attach-sources</id>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>jar-no-fork</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>2.3.2</version>
+                <configuration>
+                        <source>1.5</source>
+                        <profile>compact1</profile>
+                        <target>1.5</target>
+                        <debug>true</debug>
+                        <optimize>true</optimize>
+                        <encoding>UTF-8</encoding>
+                        <meminitial>128m</meminitial>
+                        <maxmem>1024m</maxmem>
+                    </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>retrotranslator-maven-plugin</artifactId>
+                <version>1.0-alpha-4</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>translate-project</goal>
+                        </goals>
+                        <configuration>
+                            <classifier>jdk14</classifier>
+                            <attach>true</attach>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <additionalDependencies>
+                        <additionalDependency>
+                          <groupId>org.apache.river</groupId>
+                          <artifactId>river-lib</artifactId>
+                          <version>${project.version}</version>
+                        </additionalDependency>
+<!--
+                        <additionalDependency>
+                          <groupId>org.apache.river</groupId>
+                          <artifactId>river-lib-dl</artifactId>
+                          <version>${project.version}</version>
+                        </additionalDependency>
+-->
+                    </additionalDependencies>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+</project>

Added: river/jtsk/modules/modularize/apache-river/river-lib/bnd.bnd
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-lib/bnd.bnd?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-lib/bnd.bnd (added)
+++ river/jtsk/modules/modularize/apache-river/river-lib/bnd.bnd Sat Dec 15 06:23:11 2018
@@ -0,0 +1,7 @@
+-exportcontents: \
+    org.apache.river.activation,\
+    org.apache.river.api.lookup,\
+    org.apache.river.reliableLog,\
+    org.apache.river.start.lifecycle,\
+    org.apache.river.system
+-sources: true
\ No newline at end of file

Added: river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-common/bnd.bnd
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-common/bnd.bnd?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-common/bnd.bnd (added)
+++ river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-common/bnd.bnd Sat Dec 15 06:23:11 2018
@@ -0,0 +1,3 @@
+-exportcontents: \
+    org.apache.river.phoenix.common
+-sources: true
\ No newline at end of file

Added: river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-common/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-common/pom.xml?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-common/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-common/pom.xml Sat Dec 15 06:23:11 2018
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+~ Copyright (C) 2014 the original author or authors.
+~
+~ Licensed under the Apache License, Version 2.0 (the "License");
+~ you may not use this file except in compliance with the License.
+~ You may obtain a copy of the License at
+~
+~ http://www.apache.org/licenses/LICENSE-2.0
+~
+~ Unless required by applicable law or agreed to in writing, software
+~ distributed under the License is distributed on an "AS IS" BASIS,
+~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+~ See the License for the specific language governing permissions and
+~ limitations under the License.
+-->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.river</groupId>
+        <artifactId>phoenix-activation</artifactId>
+        <version>3.0-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.river.phoenix-activation</groupId>
+    <artifactId>phoenix-common</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Module :: Phoenix Common</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-url-integrity</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-jeri</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.6</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+              <groupId>biz.aQute.bnd</groupId>
+              <artifactId>bnd-maven-plugin</artifactId>
+              <executions>
+                    <execution>
+                        <goals>
+                            <goal>bnd-process</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.owasp</groupId>
+                <artifactId>dependency-check-maven</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin> 
+        </plugins>
+    </build>
+</project>

Added: river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-dl/bnd.bnd
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-dl/bnd.bnd?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-dl/bnd.bnd (added)
+++ river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-dl/bnd.bnd Sat Dec 15 06:23:11 2018
@@ -0,0 +1,3 @@
+-exportcontents: \
+    org.apache.river.phoenix.dl
+-sources: true
\ No newline at end of file

Added: river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-dl/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-dl/pom.xml?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-dl/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-dl/pom.xml Sat Dec 15 06:23:11 2018
@@ -0,0 +1,104 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+~ Copyright (C) 2014 the original author or authors.
+~
+~ Licensed under the Apache License, Version 2.0 (the "License");
+~ you may not use this file except in compliance with the License.
+~ You may obtain a copy of the License at
+~
+~ http://www.apache.org/licenses/LICENSE-2.0
+~
+~ Unless required by applicable law or agreed to in writing, software
+~ distributed under the License is distributed on an "AS IS" BASIS,
+~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+~ See the License for the specific language governing permissions and
+~ limitations under the License.
+-->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.river</groupId>
+        <artifactId>phoenix-activation</artifactId>
+        <version>3.0-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.river.phoenix-activation</groupId>
+    <artifactId>phoenix-dl</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Module :: Phoenix Download</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-url-integrity</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-lib-dl</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-activation</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+              <groupId>biz.aQute.bnd</groupId>
+              <artifactId>bnd-maven-plugin</artifactId>
+              <executions>
+                    <execution>
+                        <goals>
+                            <goal>bnd-process</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.owasp</groupId>
+                <artifactId>dependency-check-maven</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin> 
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>2.3.2</version>
+                <configuration>
+                        <source>1.5</source>
+                        <target>1.5</target>
+                        <optimize>true</optimize>
+                        <encoding>UTF-8</encoding>
+                        <meminitial>128m</meminitial>
+                        <maxmem>1024m</maxmem>
+                    </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>retrotranslator-maven-plugin</artifactId>
+                <version>1.0-alpha-4</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>translate-project</goal>
+                        </goals>
+                        <configuration>
+                            <classifier>jdk14</classifier>
+                            <attach>true</attach>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Added: river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-group/bnd.bnd
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-group/bnd.bnd?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-group/bnd.bnd (added)
+++ river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-group/bnd.bnd Sat Dec 15 06:23:11 2018
@@ -0,0 +1,3 @@
+-exportcontents: \
+    org.apache.river.phoenix.group
+-sources: true
\ No newline at end of file

Added: river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-group/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-group/pom.xml?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-group/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-group/pom.xml Sat Dec 15 06:23:11 2018
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+~ Copyright (C) 2014 the original author or authors.
+~
+~ Licensed under the Apache License, Version 2.0 (the "License");
+~ you may not use this file except in compliance with the License.
+~ You may obtain a copy of the License at
+~
+~ http://www.apache.org/licenses/LICENSE-2.0
+~
+~ Unless required by applicable law or agreed to in writing, software
+~ distributed under the License is distributed on an "AS IS" BASIS,
+~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+~ See the License for the specific language governing permissions and
+~ limitations under the License.
+-->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.river</groupId>
+        <artifactId>phoenix-activation</artifactId>
+        <version>3.0-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.river.phoenix-activation</groupId>
+    <artifactId>phoenix-group</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Module :: Phoenix Group</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-url-integrity</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-jrmp</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-activation</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-lib-dl</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river.phoenix-activation</groupId>
+            <artifactId>phoenix-common</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river.phoenix-activation</groupId>
+            <artifactId>phoenix-dl</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+              <groupId>biz.aQute.bnd</groupId>
+              <artifactId>bnd-maven-plugin</artifactId>
+              <executions>
+                    <execution>
+                        <goals>
+                            <goal>bnd-process</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.owasp</groupId>
+                <artifactId>dependency-check-maven</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin> 
+        </plugins>
+    </build>
+</project>

Added: river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-init/bnd.bnd
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-init/bnd.bnd?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-init/bnd.bnd (added)
+++ river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-init/bnd.bnd Sat Dec 15 06:23:11 2018
@@ -0,0 +1,3 @@
+-exportcontents: \
+    org.apache.river.phoenix.init
+-sources: true
\ No newline at end of file

Added: river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-init/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-init/pom.xml?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-init/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix-init/pom.xml Sat Dec 15 06:23:11 2018
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+~ Copyright (C) 2014 the original author or authors.
+~
+~ Licensed under the Apache License, Version 2.0 (the "License");
+~ you may not use this file except in compliance with the License.
+~ You may obtain a copy of the License at
+~
+~ http://www.apache.org/licenses/LICENSE-2.0
+~
+~ Unless required by applicable law or agreed to in writing, software
+~ distributed under the License is distributed on an "AS IS" BASIS,
+~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+~ See the License for the specific language governing permissions and
+~ limitations under the License.
+-->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.river</groupId>
+        <artifactId>phoenix-activation</artifactId>
+        <version>3.0-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.river.phoenix-activation</groupId>
+    <artifactId>phoenix-init</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Module :: Phoenix Init</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-url-integrity</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river.tools</groupId>
+            <artifactId>security-policy-debug</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+              <groupId>biz.aQute.bnd</groupId>
+              <artifactId>bnd-maven-plugin</artifactId>
+              <executions>
+                    <execution>
+                        <goals>
+                            <goal>bnd-process</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.owasp</groupId>
+                <artifactId>dependency-check-maven</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin> 
+        </plugins>
+    </build>
+</project>

Added: river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix/bnd.bnd
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix/bnd.bnd?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix/bnd.bnd (added)
+++ river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix/bnd.bnd Sat Dec 15 06:23:11 2018
@@ -0,0 +1,3 @@
+-exportcontents: \
+    org.apache.river.phoenix
+-sources: true
\ No newline at end of file

Added: river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix/pom.xml?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-phoenix/phoenix/pom.xml Sat Dec 15 06:23:11 2018
@@ -0,0 +1,165 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+~ Copyright (C) 2014 the original author or authors.
+~
+~ Licensed under the Apache License, Version 2.0 (the "License");
+~ you may not use this file except in compliance with the License.
+~ You may obtain a copy of the License at
+~
+~ http://www.apache.org/licenses/LICENSE-2.0
+~
+~ Unless required by applicable law or agreed to in writing, software
+~ distributed under the License is distributed on an "AS IS" BASIS,
+~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+~ See the License for the specific language governing permissions and
+~ limitations under the License.
+-->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.river</groupId>
+        <artifactId>phoenix-activation</artifactId>
+        <version>3.0-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.river.phoenix-activation</groupId>
+    <artifactId>phoenix</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Module :: Phoenix</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-lib</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-jrmp</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river.phoenix-activation</groupId>
+            <artifactId>phoenix-common</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river.phoenix-activation</groupId>
+            <artifactId>phoenix-dl</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river.tools</groupId>
+            <artifactId>security-policy-debug</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.6</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>2.3.2</version>
+                <configuration>
+                        <source>1.5</source>
+                        <target>1.5</target>
+                        <optimize>true</optimize>
+                        <encoding>UTF-8</encoding>
+                        <meminitial>128m</meminitial>
+                        <maxmem>1024m</maxmem>
+                    </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>exec-maven-plugin</artifactId>
+                <version>1.5.0</version>
+                <executions>
+                    <execution>
+                        <id>exec-rmic</id>
+                        <phase>process-classes</phase>
+                        <goals>
+                            <goal>exec</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <executable>rmic</executable>
+                    <arguments>
+                        <argument>-v1.1</argument>
+                        <argument>-classpath</argument>
+                        <classpath></classpath>
+                        <argument>-d</argument>
+                        <argument>${basedir}/target/classes</argument>
+                        <argument>org.apache.river.phoenix.AbstractRegistry</argument>
+                    </arguments>
+                </configuration>
+                    <!--<exec executable="rmic">
+                        <arg value="-v1.1"/>
+                        <arg value="-classpath"/>
+                        <arg value="${build.classes.dir}"/>
+                        <arg value="-d"/>
+                        <arg value="${build.classes.dir}"/>
+                        <arg value="org.apache.river.phoenix.AbstractRegistry"/>
+                    </exec>-->
+            </plugin>
+            <!--<plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <version>2.2</version>
+                <configuration>
+                    <archive>                
+                        <manifestEntries>
+                            <Main-Class>org.apache.river.phoenix.Activation</Main-Class>
+                            <Implementation-Version>${project.version}</Implementation-Version>
+                            <Class-Path>river-url-integrity-${project.version}.jar, river-lib-${project.version}.jar, phoenix-dl-${project.version}.jar</Class-Path>
+                        </manifestEntries>
+                    </archive>
+                </configuration>
+            </plugin>-->
+            <plugin>
+                <groupId>org.owasp</groupId>
+                <artifactId>dependency-check-maven</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin> 
+            <plugin>
+              <groupId>biz.aQute.bnd</groupId>
+              <artifactId>bnd-maven-plugin</artifactId>
+              <executions>
+                    <execution>
+                        <goals>
+                            <goal>bnd-process</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <version>2.1.1</version>
+                <executions>
+                    <execution>
+                        <id>attach-sources</id>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>jar-no-fork</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Added: river/jtsk/modules/modularize/apache-river/river-phoenix/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-phoenix/pom.xml?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-phoenix/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-phoenix/pom.xml Sat Dec 15 06:23:11 2018
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+~ Copyright (C) 2014 the original author or authors.
+~
+~ Licensed under the Apache License, Version 2.0 (the "License");
+~ you may not use this file except in compliance with the License.
+~ You may obtain a copy of the License at
+~
+~ http://www.apache.org/licenses/LICENSE-2.0
+~
+~ Unless required by applicable law or agreed to in writing, software
+~ distributed under the License is distributed on an "AS IS" BASIS,
+~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+~ See the License for the specific language governing permissions and
+~ limitations under the License.
+-->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache</groupId>
+        <artifactId>river</artifactId>
+        <version>3.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.river</groupId>
+    <artifactId>phoenix-activation</artifactId>
+    <packaging>pom</packaging>
+
+    <name>Module :: Phoenix Activation</name>
+
+    <modules>
+        <module>phoenix-dl</module>
+        <module>phoenix</module>
+        <module>phoenix-group</module>
+        <module>phoenix-init</module>
+        <module>phoenix-common</module>
+    </modules>
+</project>

Added: river/jtsk/modules/modularize/apache-river/river-platform/bnd.bnd
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-platform/bnd.bnd?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-platform/bnd.bnd (added)
+++ river/jtsk/modules/modularize/apache-river/river-platform/bnd.bnd Sat Dec 15 06:23:11 2018
@@ -0,0 +1,34 @@
+Bundle-Activator: org.apache.river.resource.OSGiServiceIterator
+-exportcontents: \
+    net.jini.config,\
+    net.jini.constraint,\
+    net.jini.core.constraint,\
+    net.jini.core.discovery,\
+    net.jini.core.entry,\
+    net.jini.core.event,\
+    net.jini.core.lease,\
+    net.jini.core.lookup,\
+    net.jini.core.transaction,\
+    net.jini.discovery,\
+    net.jini.export,\
+    net.jini.id,\
+    net.jini.io,\
+    net.jini.io.context,\
+    net.jini.loader,\
+    net.jini.security,\
+    net.jini.security.policy,\
+    net.jini.security.proxytrust,\
+    org.apache.river.action,\
+    org.apache.river.api.common,\
+    org.apache.river.api.io,\
+    org.apache.river.api.net,\
+    org.apache.river.api.security,\
+    org.apache.river.config,\
+    org.apache.river.constants,\
+    org.apache.river.discovery,\
+    org.apache.river.impl,\
+    org.apache.river.logging,\
+    org.apache.river.proxy,\
+    org.apache.river.resource,\
+    org.apache.river.thread.wakeup
+-sources: true

Added: river/jtsk/modules/modularize/apache-river/river-pref-loader/bnd.bnd
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-pref-loader/bnd.bnd?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-pref-loader/bnd.bnd (added)
+++ river/jtsk/modules/modularize/apache-river/river-pref-loader/bnd.bnd Sat Dec 15 06:23:11 2018
@@ -0,0 +1,3 @@
+-exportcontents: \
+    net.jini.loader.pref
+-sources: true
\ No newline at end of file

Added: river/jtsk/modules/modularize/apache-river/river-pref-loader/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-pref-loader/pom.xml?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-pref-loader/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-pref-loader/pom.xml Sat Dec 15 06:23:11 2018
@@ -0,0 +1,145 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright (C) 2013 the original author or authors.
+  ~
+  ~ Licensed under the Apache License, Version 2.0 (the "License");
+  ~ you may not use this file except in compliance with the License.
+  ~ You may obtain a copy of the License at
+  ~
+  ~ http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache</groupId>
+        <artifactId>river</artifactId>
+        <version>3.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.river</groupId>
+    <artifactId>river-pref-class-loader</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Module :: River Loader</name>
+    <description>River Preferred RMIClassLoader Providers</description>
+    <organization>
+        <name>The Apache Software Foundation</name>
+        <url>http://www.apache.org/</url>
+    </organization>
+    <licenses>
+        <license>
+            <name>The Apache Software License, Version 2.0</name>
+            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+        </license>
+    </licenses>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-platform</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.6</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>biz.aQute.bnd</groupId>
+            <artifactId>biz.aQute.bnd.annotation</artifactId>
+            <version>3.3.0</version>
+            <scope>compile</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+              <groupId>biz.aQute.bnd</groupId>
+              <artifactId>bnd-maven-plugin</artifactId>
+              <executions>
+                    <execution>
+                        <goals>
+                            <goal>bnd-process</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.owasp</groupId>
+                <artifactId>dependency-check-maven</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin> 
+             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <version>2.1.1</version>
+                <executions>
+                    <execution>
+                        <id>attach-sources</id>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>jar-no-fork</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>2.3.2</version>
+                <configuration>
+                        <source>1.5</source>
+                        <target>1.5</target>
+                        <optimize>true</optimize>
+                        <encoding>UTF-8</encoding>
+                        <meminitial>128m</meminitial>
+                        <maxmem>1024m</maxmem>
+                    </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>retrotranslator-maven-plugin</artifactId>
+                <version>1.0-alpha-4</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>translate-project</goal>
+                        </goals>
+                        <configuration>
+                            <classifier>jdk14</classifier>
+                            <attach>true</attach>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>  
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <artifactId>maven-javadoc-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </reporting>
+</project>

Added: river/jtsk/modules/modularize/apache-river/river-ui-factory/bnd.bnd
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-ui-factory/bnd.bnd?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-ui-factory/bnd.bnd (added)
+++ river/jtsk/modules/modularize/apache-river/river-ui-factory/bnd.bnd Sat Dec 15 06:23:11 2018
@@ -0,0 +1,3 @@
+-exportcontents: \
+    net.jini.lookup.ui.factory
+-sources: false
\ No newline at end of file

Added: river/jtsk/modules/modularize/apache-river/river-ui-factory/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-ui-factory/pom.xml?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-ui-factory/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-ui-factory/pom.xml Sat Dec 15 06:23:11 2018
@@ -0,0 +1,127 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+~ Copyright (C) 2014 the original author or authors.
+~
+~ Licensed under the Apache License, Version 2.0 (the "License");
+~ you may not use this file except in compliance with the License.
+~ You may obtain a copy of the License at
+~
+~ http://www.apache.org/licenses/LICENSE-2.0
+~
+~ Unless required by applicable law or agreed to in writing, software
+~ distributed under the License is distributed on an "AS IS" BASIS,
+~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+~ See the License for the specific language governing permissions and
+~ limitations under the License.
+-->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache</groupId>
+        <artifactId>river</artifactId>
+        <version>3.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.river</groupId>
+    <artifactId>river-ui-factory</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Module :: River Service DL Library UI Factory</name>
+
+    <dependencies>       
+
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-url-integrity</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-platform</artifactId>
+            <version>3.0-SNAPSHOT</version>
+            <type>jar</type>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-lib-dl</artifactId>
+            <version>3.0-SNAPSHOT</version>
+            <type>jar</type>
+        </dependency>
+        <dependency>
+            <groupId>${project.groupId}</groupId>
+            <artifactId>river-jeri</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+              <groupId>biz.aQute.bnd</groupId>
+              <artifactId>bnd-maven-plugin</artifactId>
+              <executions>
+                    <execution>
+                        <goals>
+                            <goal>bnd-process</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.owasp</groupId>
+                <artifactId>dependency-check-maven</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin> 
+             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <version>2.1.1</version>
+                <executions>
+                    <execution>
+                        <id>attach-sources</id>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>jar-no-fork</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>2.3.2</version>
+                <configuration>
+                        <source>1.5</source>
+                        <target>1.5</target>
+                        <optimize>true</optimize>
+                        <encoding>UTF-8</encoding>
+                        <meminitial>128m</meminitial>
+                        <maxmem>1024m</maxmem>
+                    </configuration>
+            </plugin>
+            <!--<plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>retrotranslator-maven-plugin</artifactId>
+                <version>1.0-alpha-4</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>translate-project</goal>
+                        </goals>
+                        <configuration>
+                            <classifier>jdk14</classifier>
+                            <attach>true</attach>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>-->
+        </plugins>
+    </build>
+</project>

Added: river/jtsk/modules/modularize/apache-river/river-url-integrity/bnd.bnd
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-url-integrity/bnd.bnd?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-url-integrity/bnd.bnd (added)
+++ river/jtsk/modules/modularize/apache-river/river-url-integrity/bnd.bnd Sat Dec 15 06:23:11 2018
@@ -0,0 +1,5 @@
+-exportcontents: \
+    net.jini.url.file,\
+    net.jini.url.httpmd,\
+    net.jini.url.https
+-sources: true
\ No newline at end of file

Added: river/jtsk/modules/modularize/apache-river/river-url-integrity/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-url-integrity/pom.xml?rev=1848979&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-url-integrity/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-url-integrity/pom.xml Sat Dec 15 06:23:11 2018
@@ -0,0 +1,209 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+~ Copyright (C) 2014 the original author or authors.
+~
+~ Licensed under the Apache License, Version 2.0 (the "License");
+~ you may not use this file except in compliance with the License.
+~ You may obtain a copy of the License at
+~
+~ http://www.apache.org/licenses/LICENSE-2.0
+~
+~ Unless required by applicable law or agreed to in writing, software
+~ distributed under the License is distributed on an "AS IS" BASIS,
+~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+~ See the License for the specific language governing permissions and
+~ limitations under the License.
+-->
+<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/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache</groupId>
+        <artifactId>river</artifactId>
+        <version>3.0-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.river</groupId>
+    <artifactId>river-url-integrity</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Module :: River URL providers and Integrity</name>
+    <description>River URL provider and Integrity verifiers.
+    </description>
+
+    <properties>
+        <high.scale.lib.version>1.0.3</high.scale.lib.version>
+    </properties>
+
+    <dependencies>  
+		 
+         <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-platform</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+         <dependency>
+             <groupId>${project.groupId}</groupId>
+             <artifactId>river-resources</artifactId>
+             <version>${project.version}</version>
+         </dependency>   
+         <dependency>
+             <groupId>${project.groupId}</groupId>
+             <artifactId>river-jeri</artifactId>
+             <version>${project.version}</version>
+         </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.6</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>biz.aQute.bnd</groupId>
+            <artifactId>biz.aQute.bnd.annotation</artifactId>
+            <version>3.3.0</version>
+            <scope>compile</scope>
+        </dependency>
+        
+		
+    </dependencies>
+
+    <build>
+        <plugins>    
+            <plugin>
+              <groupId>biz.aQute.bnd</groupId>
+              <artifactId>bnd-maven-plugin</artifactId>
+              <executions>
+                    <execution>
+                        <goals>
+                            <goal>bnd-process</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>    
+            <plugin>
+                <groupId>org.owasp</groupId>
+                <artifactId>dependency-check-maven</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>check</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>     
+            <!--<plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <version>2.2</version>
+                <configuration>
+                    <archive>                
+                        <manifestEntries>
+                                <Implementation-Version>${project.version}</Implementation-Version>
+                            <Class-Path>river-resources-${project.version}.jar high-scale-lib-${high.scale.lib.version}.jar</Class-Path>
+                        </manifestEntries>
+                    </archive>
+                </configuration>
+            </plugin>-->
+
+            <!--<plugin>
+               <groupId>org.codehaus.gmaven</groupId>
+               <artifactId>gmaven-plugin</artifactId>
+               <configuration>
+                    <providerSelection>${gmavenProviderSelection}</providerSelection>
+                    <source/>
+                </configuration>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>generateStubs</goal>
+                            <goal>compile</goal>
+                            <goal>generateTestStubs</goal>
+                            <goal>testCompile</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <dependencies>
+                    <dependency>
+                        <groupId>org.codehaus.groovy</groupId>
+                        <artifactId>groovy-all</artifactId>
+                        <version>${groovy.version}</version>
+                    </dependency>
+                </dependencies>
+                        </plugin>-->					
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-source-plugin</artifactId>
+                <version>2.1.1</version>
+                <executions>
+                    <execution>
+                        <id>attach-sources</id>
+                        <phase>verify</phase>
+                        <goals>
+                            <goal>jar-no-fork</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>2.3.2</version>
+                <configuration>
+                        <source>1.5</source>
+                        <profile>compact1</profile>
+                        <target>1.5</target>
+                        <debug>true</debug>
+                        <optimize>true</optimize>
+                        <encoding>UTF-8</encoding>
+                        <meminitial>128m</meminitial>
+                        <maxmem>1024m</maxmem>
+                    </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>retrotranslator-maven-plugin</artifactId>
+                <version>1.0-alpha-4</version>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>translate-project</goal>
+                        </goals>
+                        <configuration>
+                            <classifier>jdk14</classifier>
+                            <attach>true</attach>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-surefire-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+    <reporting>
+        <plugins>
+            <plugin>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+<!--
+                    <additionalDependencies>
+                        <additionalDependency>
+                          <groupId>org.apache.river</groupId>
+                          <artifactId>river-lib</artifactId>
+                          <version>${project.version}</version>
+                        </additionalDependency>
+                        <additionalDependency>
+                          <groupId>org.apache.river</groupId>
+                          <artifactId>river-lib-dl</artifactId>
+                          <version>${project.version}</version>
+                        </additionalDependency>
+                    </additionalDependencies>
+-->
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+</project>