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 2019/05/05 04:56:35 UTC

svn commit: r1858633 - in /river/jtsk/modules/modularize/apache-river/river-services: fiddler/ fiddler/fiddler-dl/ fiddler/fiddler-service/ group/ group/group-service/ group/group-service/src/ group/group-service/src/main/ group/group-service/src/main/...

Author: peter_firmstone
Date: Sun May  5 04:56:35 2019
New Revision: 1858633

URL: http://svn.apache.org/viewvc?rev=1858633&view=rev
Log:
RIVER-358 - Add standard maven directory structure

Added:
    river/jtsk/modules/modularize/apache-river/river-services/fiddler/fiddler-dl/pom.xml
    river/jtsk/modules/modularize/apache-river/river-services/fiddler/fiddler-service/pom.xml
    river/jtsk/modules/modularize/apache-river/river-services/fiddler/pom.xml
    river/jtsk/modules/modularize/apache-river/river-services/group/group-service/
    river/jtsk/modules/modularize/apache-river/river-services/group/group-service/pom.xml
    river/jtsk/modules/modularize/apache-river/river-services/group/group-service/src/
    river/jtsk/modules/modularize/apache-river/river-services/group/group-service/src/main/
    river/jtsk/modules/modularize/apache-river/river-services/group/group-service/src/main/java/
    river/jtsk/modules/modularize/apache-river/river-services/group/pom.xml

Added: river/jtsk/modules/modularize/apache-river/river-services/fiddler/fiddler-dl/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-services/fiddler/fiddler-dl/pom.xml?rev=1858633&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-services/fiddler/fiddler-dl/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-services/fiddler/fiddler-dl/pom.xml Sun May  5 04:56:35 2019
@@ -0,0 +1,141 @@
+<?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>fiddler</artifactId>
+        <version>3.0-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.river.fiddler</groupId>
+    <artifactId>fiddler-dl</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Module :: Fiddler LookupDiscoveryService Download classes</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-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> 
+            <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.eclipse.tycho.extras</groupId>
+                <artifactId>tycho-pack200a-plugin</artifactId>
+                <executions>
+                        <execution>
+                                <id>pack200-normalize</id>
+                                <goals>
+                                        <goal>normalize</goal>
+                                </goals>
+                                <phase>package</phase>
+                        </execution>
+                </executions>
+            </plugin>  
+            <!-- To be enabled -->
+            <!--<plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jarsigner-plugin</artifactId>
+                <version>1.4</version>
+                <executions>
+                  <execution>
+                    <id>sign</id>
+                    <goals>
+                      <goal>sign</goal>
+                    </goals>
+                    <phase>package</phase>
+                  </execution>
+                </executions>
+                <configuration>
+                  <keystore>/path/to/the/keystore</keystore>
+                  <alias>Alias name</alias>
+                  <storepass>Store password</storepass>
+                  <keypass>Key password</keypass>
+                </configuration>
+              </plugin>-->
+            <plugin>
+                <groupId>org.eclipse.tycho.extras</groupId>
+                <artifactId>tycho-pack200b-plugin</artifactId>
+                <executions>
+                        <execution>
+                                <id>pack200-pack</id>
+                                <goals>
+                                        <goal>pack</goal>
+                                </goals>
+                                <phase>package</phase>
+                        </execution>
+                </executions>
+            </plugin>   
+            <plugin>
+                <groupId>org.eclipse.tycho</groupId>
+                <artifactId>tycho-p2-plugin</artifactId>
+                <executions>
+                        <execution>
+                                <id>p2-metadata</id>
+                                <goals>
+                                        <goal>p2-metadata</goal>
+                                </goals>
+                                <phase>package</phase>
+                        </execution>
+                </executions>
+                <configuration>
+                        <defaultP2Metadata>false</defaultP2Metadata>
+                </configuration>
+            </plugin> 
+        </plugins>
+    </build>
+</project>

Added: river/jtsk/modules/modularize/apache-river/river-services/fiddler/fiddler-service/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-services/fiddler/fiddler-service/pom.xml?rev=1858633&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-services/fiddler/fiddler-service/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-services/fiddler/fiddler-service/pom.xml Sun May  5 04:56:35 2019
@@ -0,0 +1,86 @@
+<?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>fiddler</artifactId>
+        <version>3.0-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.river.fiddler</groupId>
+    <artifactId>fiddler-service</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Module :: Fiddler LookupDiscoveryService Implementation</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.river.fiddler</groupId>
+            <artifactId>fiddler-dl</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+         <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-start</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-url-integrity</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-phoenix</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-lib</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-services/fiddler/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-services/fiddler/pom.xml?rev=1858633&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-services/fiddler/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-services/fiddler/pom.xml Sun May  5 04:56:35 2019
@@ -0,0 +1,37 @@
+<?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>fiddler</artifactId>
+    <packaging>pom</packaging>
+
+    <name>Module :: Fiddler the LookupDiscoveryService</name>
+
+    <modules>
+        <module>fiddler-dl</module>
+        <module>fiddler-service</module>
+    </modules>
+</project>

Added: river/jtsk/modules/modularize/apache-river/river-services/group/group-service/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-services/group/group-service/pom.xml?rev=1858633&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-services/group/group-service/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-services/group/group-service/pom.xml Sun May  5 04:56:35 2019
@@ -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>group</artifactId>
+        <version>3.1.1-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.river.group</groupId>
+    <artifactId>group-service</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Module :: Group Service Implementation</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-start</artifactId>
+            <version>${project.version}</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.river</groupId>
+            <artifactId>river-phoenix</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-services/group/pom.xml
URL: http://svn.apache.org/viewvc/river/jtsk/modules/modularize/apache-river/river-services/group/pom.xml?rev=1858633&view=auto
==============================================================================
--- river/jtsk/modules/modularize/apache-river/river-services/group/pom.xml (added)
+++ river/jtsk/modules/modularize/apache-river/river-services/group/pom.xml Sun May  5 04:56:35 2019
@@ -0,0 +1,36 @@
+<?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>group</artifactId>
+    <packaging>pom</packaging>
+
+    <name>Module :: Group</name>
+
+    <modules>
+        <module>group-service</module>
+    </modules>
+</project>