Modified: commons/sandbox/rdf/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/sandbox/rdf/trunk/pom.xml?rev=1659973&r1=1659972&r2=1659973&view=diff
==============================================================================
--- commons/sandbox/rdf/trunk/pom.xml (original)
+++ commons/sandbox/rdf/trunk/pom.xml Sun Feb 15 18:41:15 2015
@@ -22,13 +22,14 @@
     <parent>
         <groupId>org.apache.commons</groupId>
         <artifactId>commons-parent</artifactId>
-        <version>35</version>
+        <version>36</version>
     </parent>
     <modelVersion>4.0.0</modelVersion>
     <groupId>commons-rdf</groupId>
     <artifactId>commons-rdf</artifactId>
+    <packaging>pom</packaging>
     <version>0.1-SNAPSHOT</version>
-    <name>Apache Commons RDF</name>
+    <name>Apache Commons RDF Reactor</name>
     <description>
         Apache Commons RDF provides an API modelling the RDF data model as 
defined by 
         http://www.w3.org/TR/rdf11-concepts/
@@ -48,339 +49,18 @@
     </scm>
 
 
-    <dependencies>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>4.12</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
-
     <distributionManagement>
-      <site>
-        <id>apache.website</id>
-        <name>Apache Commons Site</name>
-        
<url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid}</url>
-      </site>
+        <site>
+            <id>apache.website</id>
+            <name>Apache Commons Site</name>
+            
<url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/${commons.componentid}</url>
+        </site>
     </distributionManagement>
 
-    <properties>
-        <maven.compiler.source>1.7</maven.compiler.source>
-        <maven.compiler.target>1.7</maven.compiler.target>
-        
<commons.javadoc.java.link>http://docs.oracle.com/javase/7/docs/api/</commons.javadoc.java.link>
-        <commons.componentid>rdf</commons.componentid>
-        <commons.release.version>${project.version}</commons.release.version>
-<!--        <commons.rc.version>RC1</commons.rc.version>
-        <commons.release.desc>(Requires Java ${maven.compiler.target} or 
later)</commons.release.desc>
-        <commons.release.2.version>1.4.1</commons.release.2.version>
-        <commons.release.2.binary.suffix />
-        <commons.release.2.desc>(Requires Java 1.3 or 
later)</commons.release.2.desc> -->
-        <!-- TBD <commons.jira.id>RDF</commons.jira.id>
-        <commons.jira.pid></commons.jira.pid> -->
-    </properties>
-
-    <build>
-        <pluginManagement>
-          <plugins>
-            <plugin>
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-compiler-plugin</artifactId>
-              <version>${commons.compiler.version}</version>
-              <configuration>
-                <!-- Fix incremental compiler bug, see 
https://jira.codehaus.org/browse/MCOMPILER-205 etc. -->
-                <excludes>
-                  <exclude>**/package-info.java</exclude>
-                </excludes>
-              </configuration>
-            </plugin>
-          </plugins>
-        </pluginManagement>
-        <plugins>
-
-            <!-- Exclude examples from binary jar -->
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-jar-plugin</artifactId>
-                <configuration>
-                    <excludes>
-                        <exclude>examples/**</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-
-            <!-- Exclude examples from source jar -->
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-source-plugin</artifactId>
-                <configuration>
-                    <excludes>
-                        <exclude>examples/**</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <configuration>
-                    <excludes>
-                        <exclude>**/*FunctionalTest.java</exclude>
-                        <exclude>**/POP3*Test.java</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-
-            <plugin>
-                <artifactId>maven-assembly-plugin</artifactId>
-                <configuration>
-                    <descriptors>
-                        <descriptor>src/main/assembly/bin.xml</descriptor>
-                        <descriptor>src/main/assembly/src.xml</descriptor>
-                    </descriptors>
-                    <tarLongFileMode>gnu</tarLongFileMode>
-                </configuration>
-            </plugin>
-
-            <plugin>
-                <artifactId>maven-antrun-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <phase>package</phase>
-                        <configuration>
-                            <target>
-                                <jar 
destfile="target/commons-net-ftp-${project.version}.jar">
-                                    <metainf dir="${basedir}" 
includes="NOTICE.txt,LICENSE.txt" />
-                                    <manifest>
-                                        <attribute name="Extension-Name" 
value="org.apache.commons.net" />
-                                        <attribute name="Specification-Title" 
value="${project.name}" />
-                                        <attribute name="Implementation-Title" 
value="${project.name}" />
-                                        <attribute 
name="Implementation-Vendor" value="${project.organization.name}" />
-                                        <attribute 
name="Implementation-Version" value="${project.version}" />
-                                        <attribute 
name="Implementation-Vendor-Id" value="org.apache" />
-                                        <attribute name="Implementation-Build" 
value="${implementation.build}"/>
-                                        <attribute name="X-Compile-Source-JDK" 
value="${maven.compiler.source}" />
-                                        <attribute name="X-Compile-Target-JDK" 
value="${maven.compiler.target}" />
-                                    </manifest>
-                                    <fileset dir="target/classes" 
includes="org/apache/commons/net/ftp/**,org/apache/commons/net/*,org/apache/commons/net/io/*,org/apache/commons/net/util/*"
 />
-                                </jar>
-                                <!--
-                                    Create the binary examples jar, which will 
be added to the binary zip/tgz,
-                                    but not deployed independently to Maven
-                                -->
-                                <jar 
destfile="target/commons-net-examples-${project.version}.jar">
-                                    <metainf dir="${basedir}" 
includes="NOTICE.txt,LICENSE.txt" />
-                                    <manifest>
-                                        <attribute name="Extension-Name" 
value="org.apache.commons.net" />
-                                        <attribute name="Specification-Title" 
value="${project.name}" />
-                                        <attribute name="Implementation-Title" 
value="${project.name}" />
-                                        <attribute 
name="Implementation-Vendor" value="${project.organization.name}" />
-                                        <attribute 
name="Implementation-Version" value="${project.version}" />
-                                        <attribute 
name="Implementation-Vendor-Id" value="org.apache" />
-                                        <attribute name="Implementation-Build" 
value="${implementation.build}"/>
-                                        <attribute name="X-Compile-Source-JDK" 
value="${maven.compiler.source}" />
-                                        <attribute name="X-Compile-Target-JDK" 
value="${maven.compiler.target}" />
-                                        <!-- Helper application -->
-                                        <attribute name="Main-Class" 
value="examples/Main" />
-                                        <!-- Allow java -jar examples.jar to 
work -->
-                                        <attribute name="Class-Path" 
value="commons-net-${project.version}.jar" />
-                                    </manifest>
-                                    <fileset dir="target/classes" 
includes="examples/**" />
-                                </jar>
-                            </target>
-                        </configuration>
-                        <goals>
-                            <goal>run</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            <!--  Attaches the commons-net-ftp and examples JARs to the Maven 
lifecycle
-                  to ensure they will be signed and deployed as normal -->
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>build-helper-maven-plugin</artifactId>
-                <version>1.8</version>
-                <executions>
-                    <execution>
-                        <id>attach-artifacts</id>
-                        <phase>package</phase>
-                        <goals>
-                            <goal>attach-artifact</goal>
-                        </goals>
-                        <configuration>
-                            <artifacts>
-                                <artifact>
-                                    
<file>target/commons-net-ftp-${project.version}.jar</file>
-                                    <type>jar</type>
-                                    <classifier>ftp</classifier>
-                                </artifact>
-                                <artifact>
-                                    
<file>target/commons-net-examples-${project.version}.jar</file>
-                                    <type>jar</type>
-                                    <classifier>examples</classifier>
-                                </artifact>
-                            </artifacts>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-
-            <!-- Exclude examples from Javadoc jar -->
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-javadoc-plugin</artifactId>
-                <configuration>
-                    <excludePackageNames>examples.*</excludePackageNames>
-                </configuration>
-            </plugin>
-
-            <!-- Copy the examples sources -->
-            <plugin>
-              <artifactId>maven-resources-plugin</artifactId>
-              <executions>
-                <execution>
-                  <id>copy-resources</id>
-                  <phase>pre-site</phase>
-                  <goals>
-                    <goal>copy-resources</goal>
-                  </goals>
-                  <configuration>
-                    
<outputDirectory>${basedir}/target/site/examples</outputDirectory>
-                    <resources>
-                      <resource>
-                        <directory>src/main/java/examples</directory>
-                        <excludes>
-                          <exclude>**/Main.java</exclude>
-                        </excludes>
-                        <filtering>false</filtering>
-                      </resource>
-                    </resources>
-                  </configuration>
-                </execution>
-              </executions>
-            </plugin>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-scm-publish-plugin</artifactId>
-            <configuration>
-              <ignorePathsToDelete>
-                <ignorePathToDelete>javadocs</ignorePathToDelete>
-              </ignorePathsToDelete>
-            </configuration>
-          </plugin>
-
-        </plugins>
-
-    </build>
-
-    <reporting>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-changes-plugin</artifactId>
-                <version>${commons.changes.version}</version>
-                <configuration>
-                    <issueLinkTemplatePerSystem>
-                        <default>%URL%/%ISSUE%</default>
-                    </issueLinkTemplatePerSystem>
-                    <template>release-notes.vm</template>
-                    <templateDirectory>src/changes</templateDirectory>
-                    <!--  Add sample JIRA report - 'mvn changes:jira-report' 
or 'mvn site' -->
-                    <onlyCurrentVersion>false</onlyCurrentVersion>
-                    <columnNames>Fix 
Version,Key,Component,Summary,Type,Resolution,Status</columnNames>
-                    <!-- Sort cols have to be reversed in JIRA 4 -->
-                    <sortColumnNames>Key DESC,Type,Fix Version 
DESC</sortColumnNames>
-                    <resolutionIds>Fixed</resolutionIds>
-                    <statusIds>Resolved,Closed</statusIds>
-                    <!-- Don't include sub-task -->
-                    <typeIds>Bug,New 
Feature,Task,Improvement,Wish,Test</typeIds>
-                    <fixVersionIds>${commons.release.version}</fixVersionIds>
-                    <!-- The default is 100 -->
-                    <maxEntries>100</maxEntries>
-                </configuration>
-                <reportSets>
-                    <reportSet>
-                        <reports>
-                            <report>changes-report</report>
-                            <report>jira-report</report>
-                        </reports>
-                    </reportSet>
-                </reportSets>
-            </plugin>
-
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>findbugs-maven-plugin</artifactId>
-                <version>2.5.5</version>
-                <configuration>
-                    
<excludeFilterFile>findbugs-exclude-filter.xml</excludeFilterFile>
-                </configuration>
-            </plugin>
-
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>clirr-maven-plugin</artifactId>
-                <configuration>
-                    <excludes>
-                      <exclude>examples/**</exclude>
-                    </excludes>
-                </configuration>
-            </plugin>
-
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-javadoc-plugin</artifactId>
-                <configuration>
-                    <excludePackageNames>examples.*</excludePackageNames>
-                </configuration>
-                <reportSets>
-                  <reportSet>
-                    <reports>
-                      <report>javadoc</report>
-                    </reports>
-                  </reportSet>
-                </reportSets>
-            </plugin>
-
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-checkstyle-plugin</artifactId>
-                <version>2.11</version>
-                <configuration>
-                    <configLocation>${basedir}/checkstyle.xml</configLocation>
-                    
<suppressionsLocation>${basedir}/checkstyle-suppressions.xml</suppressionsLocation>
-                    <enableRulesSummary>false</enableRulesSummary>
-                </configuration>
-            </plugin>
-
-            <plugin>
-              <groupId>org.apache.rat</groupId>
-              <artifactId>apache-rat-plugin</artifactId>
-              <!-- Parent pom does not (yet) exclude these -->
-              <configuration>
-                <excludes>
-                  <exclude>.checkstyle</exclude>
-                  <exclude>.fbprefs</exclude>
-                </excludes>
-              </configuration>
-            </plugin>
-
-        </plugins>
-    </reporting>
-
-    <profiles>
-      <profile>
-        <!-- Temporary hack to suppress Javadoc 8 errors -->
-        <id>javadoc_8</id>
-        <activation>
-          <jdk>1.8</jdk>
-        </activation>
-        <properties>
-          <!-- Disable Xdoclint, until JavaDoc issues are fixed -->
-          <additionalparam>-Xdoclint:none</additionalparam>
-        </properties>
-      </profile>
-    </profiles>
+    <modules>
+        <module>api</module>
+        <module>impl.utils</module>
+        <module>impl.sparql</module>
+    </modules>
 
 </project>

Added: commons/sandbox/rdf/trunk/report.xml
URL: 
http://svn.apache.org/viewvc/commons/sandbox/rdf/trunk/report.xml?rev=1659973&view=auto
==============================================================================
--- commons/sandbox/rdf/trunk/report.xml (added)
+++ commons/sandbox/rdf/trunk/report.xml Sun Feb 15 18:41:15 2015
@@ -0,0 +1,35 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<dfxml xmloutputversion='1.0'>
+  <metadata 
+  xmlns='http://afflib.org/tcpflow/' 
+  xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' 
+  xmlns:dc='http://purl.org/dc/elements/1.1/'>
+    <dc:type>Feature Extraction</dc:type>
+  </metadata>
+  <creator version='1.0'>
+    <program>TCPFLOW</program>
+    <version>1.4.4</version>
+    <build_environment>
+      <compiler>4.8.2 (4.8.2 20140110 (prerelease) [ibm/gcc-4_8-branch merged 
from gcc-4_8-branch, revision 205847])</compiler>
+      <CPPFLAGS>-pthread -I/usr/local/include -D_FORTIFY_SOURCE=2 
-DUTC_OFFSET=+0000 </CPPFLAGS>
+      <CFLAGS>-g   -pthread -g -O3 -fstack-protector --param=ssp-buffer-size=4 
-Wformat -Werror=format-security -MD -D_FORTIFY_SOURCE=2 -Wpointer-arith 
-Wmissing-declarations -Wmissing-prototypes -Wshadow -Wwrite-strings 
-Wcast-align -Waggregate-return -Wbad-function-cast -Wcast-qual -Wundef 
-Wredundant-decls -Wdisabled-optimization -Wfloat-equal -Wmultichar 
-Wc++-compat -Wmissing-noreturn -Wall -Wstrict-prototypes</CFLAGS>
+      <CXXFLAGS>-g -pthread -g -O3 -fstack-protector --param=ssp-buffer-size=4 
-Wformat -Werror=format-security -std=c++11 -Wall -MD -D_FORTIFY_SOURCE=2 
-Wpointer-arith -Wshadow -Wwrite-strings -Wcast-align -Wredundant-decls 
-Wdisabled-optimization -Wfloat-equal -Wmultichar -Wmissing-noreturn 
-Woverloaded-virtual -Wsign-promo -funit-at-a-time -Wstrict-null-sentinel 
-Weffc++ </CXXFLAGS>
+      <LDFLAGS>-L/usr/local/lib -Wl,-Bsymbolic-functions -Wl,-z,relro</LDFLAGS>
+      <LIBS>-lpcap -lcairo -lfontconfig -lfreetype -lpixman-1 -lexpat  -lssl 
-lcrypto -lz -lssl -lcrypto </LIBS>
+      <compilation_date>2014-01-13T17:14:40</compilation_date>
+      <library name="boost" version="105400"/>
+    </build_environment>
+    <execution_environment>
+      <os_sysname>Linux</os_sysname>
+      <os_release>3.13.0-45-generic</os_release>
+      <os_version>#74-Ubuntu SMP Tue Jan 13 19:36:28 UTC 2015</os_version>
+      <host>f3addd37b525</host>
+      <arch>x86_64</arch>
+      <command_line>tcpflow -i lo -c port 3333</command_line>
+      <uid>0</uid>
+      <start_time>2015-02-15T17:15:22Z</start_time>
+    </execution_environment>
+  </creator>
+  <configuration>
+  </configuration>
+  <tdelta>0</tdelta>


Reply via email to