Skip to content

Commit

Permalink
#261 - Clean up POMs
Browse files Browse the repository at this point in the history
- Format POMs
- Remove property ukp.wikipedia.version
  • Loading branch information
reckart committed Oct 31, 2023
1 parent 66d2f42 commit 00ee5ea
Show file tree
Hide file tree
Showing 9 changed files with 683 additions and 682 deletions.
474 changes: 240 additions & 234 deletions dkpro-jwpl-api/pom.xml

Large diffs are not rendered by default.

130 changes: 67 additions & 63 deletions dkpro-jwpl-datamachine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,67 +15,71 @@
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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.dkpro.jwpl</groupId>
<artifactId>dkpro-jwpl</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<artifactId>dkpro-jwpl-datamachine</artifactId>
<name>DataMachine</name>
<dependencies>
<dependency>
<groupId>org.dkpro.jwpl</groupId>
<artifactId>dkpro-jwpl-wikimachine</artifactId>
</dependency>
<dependency>
<groupId>org.dkpro.jwpl</groupId>
<artifactId>dkpro-jwpl-mwdumper</artifactId>
</dependency>
<dependency>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil-core</artifactId>
</dependency>
<!-- logger dependencies -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>create-executable-jar</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<attach>false</attach>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
<archive>
<manifest>
<mainClass>org.dkpro.jwpl.datamachine.domain.JWPLDataMachine
</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<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.dkpro.jwpl</groupId>
<artifactId>dkpro-jwpl</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<artifactId>dkpro-jwpl-datamachine</artifactId>
<name>DataMachine</name>
<dependencies>
<dependency>
<groupId>org.dkpro.jwpl</groupId>
<artifactId>dkpro-jwpl-wikimachine</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.dkpro.jwpl</groupId>
<artifactId>dkpro-jwpl-mwdumper</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>it.unimi.dsi</groupId>
<artifactId>fastutil-core</artifactId>
</dependency>

<!-- logger dependencies -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>create-executable-jar</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<attach>false</attach>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
<archive>
<manifest>
<mainClass>org.dkpro.jwpl.datamachine.domain.JWPLDataMachine
</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
115 changes: 60 additions & 55 deletions dkpro-jwpl-parser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,70 +16,75 @@
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">
<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.dkpro.jwpl</groupId>
<artifactId>dkpro-jwpl</artifactId>
<version>2.0.0-SNAPSHOT</version>
<groupId>org.dkpro.jwpl</groupId>
<artifactId>dkpro-jwpl</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
<artifactId>dkpro-jwpl-parser</artifactId>
<name>MediaWiki Parser</name>
<description>A modular parser for MediaWiki markup.

As of June 2012, the parser module is no longer maintained.
Please use the SWEBLE parser (http://sweble.org/) for parsing MediaWiki markup. See the JWPL Google Code project page for further information.</description>
As of June 2012, the parser module is no longer maintained.
Please use the SWEBLE parser (http://sweble.org/) for parsing MediaWiki
markup. See the JWPL Google Code project page for further information.</description>

<dependencies>
<dependency>
<groupId>org.dkpro.jwpl</groupId>
<artifactId>dkpro-jwpl-api</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- TEST dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.dkpro.jwpl</groupId>
<artifactId>dkpro-jwpl-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<!-- TEST dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Xms256m -Xmx256m -Dfile.encoding=UTF-8 --add-opens=java.base/java.lang=ALL-UNNAMED</argLine>
</configuration>
</plugin>
</plugins>
</build>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Xms256m -Xmx256m -Dfile.encoding=UTF-8 --add-opens=java.base/java.lang=ALL-UNNAMED</argLine>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading

0 comments on commit 00ee5ea

Please sign in to comment.