Author: simonetripodi
Date: Fri Jan 13 11:05:14 2012
New Revision: 1230994
URL: http://svn.apache.org/viewvc?rev=1230994&view=rev
Log:
removed redundancies (inherited from parent pom)
reorganized stuff
Modified:
incubator/any23/trunk/plugins/basic-crawler/pom.xml
incubator/any23/trunk/plugins/html-scraper/pom.xml
incubator/any23/trunk/plugins/integration-test/pom.xml
incubator/any23/trunk/plugins/office-scraper/pom.xml
Modified: incubator/any23/trunk/plugins/basic-crawler/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/basic-crawler/pom.xml?rev=1230994&r1=1230993&r2=1230994&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/basic-crawler/pom.xml (original)
+++ incubator/any23/trunk/plugins/basic-crawler/pom.xml Fri Jan 13 11:05:14 2012
@@ -15,99 +15,97 @@
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/maven-v4_0_0.xsd">
-
- <parent>
- <groupId>org.apache.any23</groupId>
- <artifactId>any23-parent</artifactId>
- <version>0.6.2-SNAPSHOT</version>
- <relativePath>../../pom.xml</relativePath>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.apache.any23.plugin</groupId>
- <artifactId>basic-crawler</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>Apache Any23 :: Plugins :: Basic Crawler</name>
- <description>Any23 plugin for crawling sites.</description>
- <url>http://developers.any23.org</url>
-
- <dependencies>
- <!-- Sesame. -->
- <dependency>
- <groupId>org.openrdf.sesame</groupId>
- <artifactId>sesame-model</artifactId>
- <scope>provided</scope>
- </dependency>
-
- <!-- Any23 Core. -->
- <dependency>
- <groupId>org.deri.any23</groupId>
- <artifactId>any23-core</artifactId>
- <version>0.6.2-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
-
- <!-- BEGIN: Crawler4j -->
- <dependency>
- <groupId>edu.uci.ics</groupId>
- <artifactId>crawler4j</artifactId>
- <version>2.6.1</version>
- </dependency>
- <dependency>
- <groupId>com.sleepycat</groupId>
- <artifactId>je</artifactId>
- <version>4.0.92</version>
- </dependency>
- <dependency>
- <groupId>it.unimi.dsi</groupId>
- <artifactId>fastutil</artifactId>
- <version>6.4.1</version>
- </dependency>
- <dependency>
- <groupId>it.unimi.dsi</groupId>
- <artifactId>dsiutils</artifactId>
- <version>2.0.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.1</version>
- </dependency>
- <!--TODO: resolve dependency conflict.-->
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>1.4</version>
- </dependency>
- <!-- END: Crawler4j -->
- </dependencies>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <!-- Solve concurrency issues in Crawler4j internal
status. -->
- <forkMode>always</forkMode>
- </configuration>
- </plugin>
- <!-- Generates a self-contained JAR. -->
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
-
<finalName>${project.artifactId}-${project.version}-cli-plugin</finalName>
- <appendAssemblyId>false</appendAssemblyId>
- <descriptorRefs>
- <descriptorRef>jar-with-dependencies</descriptorRef>
- </descriptorRefs>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.any23</groupId>
+ <artifactId>any23-parent</artifactId>
+ <version>0.6.2-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.apache.any23.plugin</groupId>
+ <artifactId>basic-crawler</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+
+ <name>Apache Any23 :: Plugins :: Basic Crawler</name>
+ <description>Any23 plugin for crawling sites.</description>
+
+ <dependencies>
+ <!-- Sesame. -->
+ <dependency>
+ <groupId>org.openrdf.sesame</groupId>
+ <artifactId>sesame-model</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- Any23 Core. -->
+ <dependency>
+ <groupId>org.apache.any23</groupId>
+ <artifactId>any23-core</artifactId>
+ <version>${project.parent.version}</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- BEGIN: Crawler4j -->
+ <dependency>
+ <groupId>edu.uci.ics</groupId>
+ <artifactId>crawler4j</artifactId>
+ <version>2.6.1</version>
+ </dependency>
+ <dependency>
+ <groupId>com.sleepycat</groupId>
+ <artifactId>je</artifactId>
+ <version>4.0.92</version>
+ </dependency>
+ <dependency>
+ <groupId>it.unimi.dsi</groupId>
+ <artifactId>fastutil</artifactId>
+ <version>6.4.1</version>
+ </dependency>
+ <dependency>
+ <groupId>it.unimi.dsi</groupId>
+ <artifactId>dsiutils</artifactId>
+ <version>2.0.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <version>4.1</version>
+ </dependency>
+ <!--TODO: resolve dependency conflict.-->
+ <dependency>
+ <groupId>commons-codec</groupId>
+ <artifactId>commons-codec</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <!-- END: Crawler4j -->
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <!-- Solve concurrency issues in Crawler4j internal status. -->
+ <forkMode>always</forkMode>
+ </configuration>
+ </plugin>
+ <!-- Generates a self-contained JAR. -->
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+
<finalName>${project.artifactId}-${project.version}-cli-plugin</finalName>
+ <appendAssemblyId>false</appendAssemblyId>
+ <descriptorRefs>
+ <descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Modified: incubator/any23/trunk/plugins/html-scraper/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/html-scraper/pom.xml?rev=1230994&r1=1230993&r2=1230994&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/html-scraper/pom.xml (original)
+++ incubator/any23/trunk/plugins/html-scraper/pom.xml Fri Jan 13 11:05:14 2012
@@ -15,97 +15,79 @@
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/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.any23</groupId>
+ <artifactId>any23-parent</artifactId>
+ <version>0.6.2-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.apache.any23.plugin</groupId>
+ <artifactId>html-scraper</artifactId>
+ <version>1.0.1-SNAPSHOT</version>
+
+ <name>Apache Any23 :: Plugins :: HTML Scraper</name>
+ <description>Any23 plugin for scraping HTML code.</description>
+
+ <dependencies>
+ <!-- Sesame. -->
+ <dependency>
+ <groupId>org.openrdf.sesame</groupId>
+ <artifactId>sesame-model</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- Any23 Core. -->
+ <dependency>
+ <groupId>org.deri.any23</groupId>
+ <artifactId>any23-core</artifactId>
+ <version>0.6.2-SNAPSHOT</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- BEGIN: BoilerPipe -->
+ <dependency>
+ <groupId>net.sourceforge.nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.9.1</version>
+ <scope>provided</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>de.l3s.boilerpipe</groupId>
+ <artifactId>boilerpipe</artifactId>
+ </dependency>
+ <!-- END: BoilerPipe -->
+ </dependencies>
+
+ <build>
+ <plugins>
+ <!-- Generates a self-contained JAR. -->
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+
<finalName>${project.artifactId}-${project.version}-extractor-plugin</finalName>
+ <appendAssemblyId>false</appendAssemblyId>
+ <descriptorRefs>
+ <descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
- <parent>
- <groupId>org.apache.any23</groupId>
- <artifactId>any23-parent</artifactId>
- <version>0.6.2-SNAPSHOT</version>
- <relativePath>../../pom.xml</relativePath>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.apache.any23.plugin</groupId>
- <artifactId>html-scraper</artifactId>
- <version>1.0.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>Apache Any23 :: Plugins :: HTML Scraper</name>
- <description>Any23 plugin for scraping HTML code.</description>
- <url>http://incubator.apache.org/any23</url>
-
- <dependencies>
- <!-- Sesame. -->
- <dependency>
- <groupId>org.openrdf.sesame</groupId>
- <artifactId>sesame-model</artifactId>
- <scope>provided</scope>
- </dependency>
-
- <!-- Any23 Core. -->
- <dependency>
- <groupId>org.deri.any23</groupId>
- <artifactId>any23-core</artifactId>
- <version>0.6.2-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
-
- <!-- BEGIN: BoilerPipe -->
- <dependency>
- <groupId>net.sourceforge.nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.9.1</version>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <groupId>xml-apis</groupId>
- <artifactId>xml-apis</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>de.l3s.boilerpipe</groupId>
- <artifactId>boilerpipe</artifactId>
- </dependency>
- <!-- END: BoilerPipe -->
- </dependencies>
-
- <build>
- <plugins>
- <!-- Generates a self-contained JAR. -->
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
-
<finalName>${project.artifactId}-${project.version}-extractor-plugin</finalName>
- <appendAssemblyId>false</appendAssemblyId>
- <descriptorRefs>
- <descriptorRef>jar-with-dependencies</descriptorRef>
- </descriptorRefs>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <organization>
- <name>Apache Software Foundation</name>
- <url>http://www.apache.org</url>
- </organization>
- <scm>
- <url>https://svn.apache.org/repos/asf/incubator/any23/</url>
-
<connection>https://svn.apache.org/repos/asf/incubator/any23/</connection>
-
<developerConnection>https://svn.apache.org/repos/asf/incubator/any23/trunk/</developerConnection>
- <tag>https://svn.apache.org/repos/asf/incubator/any23/tags/</tag>
- </scm>
- <issueManagement>
- <system>Apache JIRA</system>
- <url>https://issues.apache.org/jira/browse/ANY23</url>
- </issueManagement>
- <ciManagement>
- <system>Hudson Jenkins</system>
- <url>https://builds.apache.org/job/Any23-trunk/</url>
- </ciManagement>
</project>
-
Modified: incubator/any23/trunk/plugins/integration-test/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/integration-test/pom.xml?rev=1230994&r1=1230993&r2=1230994&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/integration-test/pom.xml (original)
+++ incubator/any23/trunk/plugins/integration-test/pom.xml Fri Jan 13 11:05:14
2012
@@ -15,122 +15,103 @@
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/maven-v4_0_0.xsd">
-
- <parent>
- <groupId>org.apache.any23</groupId>
- <artifactId>any23-parent</artifactId>
- <version>0.6.2-SNAPSHOT</version>
- <relativePath>../../pom.xml</relativePath>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.apache.any23.plugin</groupId>
- <artifactId>integration-test</artifactId>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.any23</groupId>
+ <artifactId>any23-parent</artifactId>
<version>0.6.2-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>Apache Any23 :: Plugins :: Integration Test</name>
- <description>Any23 plugin integration test module.</description>
- <url>http://incubator.apache.org/any23</url>
-
- <dependencies>
- <dependency>
- <groupId>org.deri.any23</groupId>
- <artifactId>any23-core</artifactId>
- <version>0.6.2-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.deri.any23.plugin</groupId>
- <artifactId>html-scraper</artifactId>
- <version>1.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.deri.any23.plugin</groupId>
- <artifactId>office-scraper</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <!--
- Detect any plugin declared within the ./plugin classes,
- for each one performs a compilation and a dependency
distribution.
- Such step is required for the subsequent integration test.
- -->
- <plugin>
- <artifactId>maven-invoker-plugin</artifactId>
- <version>1.5</version>
- <configuration>
- <projectsDirectory>..</projectsDirectory>
-
<cloneProjectsTo>${project.build.directory}/plugins-build</cloneProjectsTo>
- <pomIncludes>
- <pomInclude>*/pom.xml</pomInclude>
- </pomIncludes>
- <pomExcludes>
- <pomExclude>integration-test/*</pomExclude>
- </pomExcludes>
- <goals>
- <goal>clean</goal>
- <goal>dependency:copy-dependencies</goal>
- <goal>integration-test</goal>
- </goals>
- </configuration>
- <executions>
- <execution>
- <phase>verify</phase>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <!--
- Runs the integration tests declared in this module.
- An integration test ends by IT.java
- -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.4.3</version>
- <executions>
- <execution>
- <phase>verify</phase>
- <goals>
- <goal>test</goal>
- </goals>
- <configuration>
- <skip>false</skip>
- <excludes>
- <exclude>none</exclude>
- </excludes>
- <includes>
- <include>**/*IT.java</include>
- </includes>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <organization>
- <name>Apache Software Foundation</name>
- <url>http://www.apache.org</url>
- </organization>
- <scm>
- <url>https://svn.apache.org/repos/asf/incubator/any23/</url>
-
<connection>https://svn.apache.org/repos/asf/incubator/any23/</connection>
-
<developerConnection>https://svn.apache.org/repos/asf/incubator/any23/trunk/</developerConnection>
- <tag>https://svn.apache.org/repos/asf/incubator/any23/tags/</tag>
- </scm>
- <issueManagement>
- <system>Apache SVN</system>
- <url>https://issues.apache.org/jira/browse/ANY23</url>
- </issueManagement>
- <ciManagement>
- <system>Hudson Jenkins</system>
- <url>https://builds.apache.org/job/Any23-trunk/</url>
- </ciManagement>
-</project>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+ <groupId>org.apache.any23.plugin</groupId>
+ <artifactId>integration-test</artifactId>
+ <version>0.6.2-SNAPSHOT</version>
+
+ <name>Apache Any23 :: Plugins :: Integration Test</name>
+ <description>Any23 plugin integration test module.</description>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.any23</groupId>
+ <artifactId>any23-core</artifactId>
+ <version>${project.parent.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.any23.plugin</groupId>
+ <artifactId>html-scraper</artifactId>
+ <version>1.0.1-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.any23.plugin</groupId>
+ <artifactId>office-scraper</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <!--
+ Detect any plugin declared within the ./plugin classes,
+ for each one performs a compilation and a dependency distribution.
+ Such step is required for the subsequent integration test.
+ -->
+ <plugin>
+ <artifactId>maven-invoker-plugin</artifactId>
+ <version>1.5</version>
+ <configuration>
+ <projectsDirectory>..</projectsDirectory>
+
<cloneProjectsTo>${project.build.directory}/plugins-build</cloneProjectsTo>
+ <pomIncludes>
+ <pomInclude>*/pom.xml</pomInclude>
+ </pomIncludes>
+ <pomExcludes>
+ <pomExclude>integration-test/*</pomExclude>
+ </pomExcludes>
+ <goals>
+ <goal>clean</goal>
+ <goal>dependency:copy-dependencies</goal>
+ <goal>integration-test</goal>
+ </goals>
+ </configuration>
+ <executions>
+ <execution>
+ <phase>verify</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <!--
+ Runs the integration tests declared in this module.
+ An integration test ends by IT.java
+ -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.4.3</version>
+ <executions>
+ <execution>
+ <phase>verify</phase>
+ <goals>
+ <goal>test</goal>
+ </goals>
+ <configuration>
+ <skip>false</skip>
+ <excludes>
+ <exclude>none</exclude>
+ </excludes>
+ <includes>
+ <include>**/*IT.java</include>
+ </includes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
Modified: incubator/any23/trunk/plugins/office-scraper/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/any23/trunk/plugins/office-scraper/pom.xml?rev=1230994&r1=1230993&r2=1230994&view=diff
==============================================================================
--- incubator/any23/trunk/plugins/office-scraper/pom.xml (original)
+++ incubator/any23/trunk/plugins/office-scraper/pom.xml Fri Jan 13 11:05:14
2012
@@ -15,80 +15,62 @@
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/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache.any23</groupId>
+ <artifactId>any23-parent</artifactId>
+ <version>0.6.2-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.apache.any23.plugin</groupId>
+ <artifactId>office-scraper</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+
+ <name>Apache Any23 :: Plugins :: Office Scraper</name>
+ <description>Any23 plugin for scraping metadata from MS Office related file
formats.</description>
+
+ <dependencies>
+ <!-- Sesame. -->
+ <dependency>
+ <groupId>org.openrdf.sesame</groupId>
+ <artifactId>sesame-model</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- Any23 Core. -->
+ <dependency>
+ <groupId>org.apache.any23</groupId>
+ <artifactId>any23-core</artifactId>
+ <version>${project.parent.version}</version>
+ <scope>provided</scope>
+ </dependency>
+
+ <!-- Apache POI -->
+ <dependency>
+ <groupId>org.apache.poi</groupId>
+ <artifactId>poi</artifactId>
+ <version>3.7</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <!-- Generates a self-contained JAR. -->
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+
<finalName>${project.artifactId}-${project.version}-extractor-plugin</finalName>
+ <appendAssemblyId>false</appendAssemblyId>
+ <descriptorRefs>
+ <descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
- <parent>
- <groupId>org.apache.any23</groupId>
- <artifactId>any23-parent</artifactId>
- <version>0.6.2-SNAPSHOT</version>
- <relativePath>../../pom.xml</relativePath>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
- <groupId>org.apache.any23.plugin</groupId>
- <artifactId>office-scraper</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>Apache Any23 :: Plugins :: Office Scraper</name>
- <description>Any23 plugin for scraping metadata from MS Office related
file formats.</description>
- <url>http://incubator.apache.org/any23</url>
-
- <dependencies>
- <!-- Sesame. -->
- <dependency>
- <groupId>org.openrdf.sesame</groupId>
- <artifactId>sesame-model</artifactId>
- <scope>provided</scope>
- </dependency>
-
- <!-- Any23 Core. -->
- <dependency>
- <groupId>org.deri.any23</groupId>
- <artifactId>any23-core</artifactId>
- <version>0.6.2-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
-
- <!-- Apache POI -->
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>3.7</version>
- </dependency>
- </dependencies>
-
- <build>
- <plugins>
- <!-- Generates a self-contained JAR. -->
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
-
<finalName>${project.artifactId}-${project.version}-extractor-plugin</finalName>
- <appendAssemblyId>false</appendAssemblyId>
- <descriptorRefs>
- <descriptorRef>jar-with-dependencies</descriptorRef>
- </descriptorRefs>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <organization>
- <name>Apache Software Foundation</name>
- <url>http://www.apache.org</url>
- </organization>
- <scm>
- <url>https://svn.apache.org/repos/asf/incubator/any23/</url>
-
<connection>https://svn.apache.org/repos/asf/incubator/any23/</connection>
-
<developerConnection>https://svn.apache.org/repos/asf/incubator/any23/trunk/</developerConnection>
- <tag>https://svn.apache.org/repos/asf/incubator/any23/tags/</tag>
- </scm>
- <issueManagement>
- <system>Apache SVN</system>
- <url>https://issues.apache.org/jira/browse/ANY23</url>
- </issueManagement>
- <ciManagement>
- <system>Hudson Jenkins</system>
- <url>https://builds.apache.org/job/Any23-trunk/</url>
- </ciManagement>
</project>
-