Skip to content

Commit

Permalink
[Feature #25] Add necessary build plugins to pom
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew-Kulich authored and blcham committed May 17, 2022
1 parent edc71b3 commit e94350b
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions s-pipes-modules/module-tabular/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,80 @@
<name>SPipes Modules - Tabular</name>
<packaging>jar</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.version>1.8</jdk.version>
<maven.compiler.source>${jdk.version}</maven.compiler.source>
<maven.compiler.target>${jdk.version}</maven.compiler.target>
<org.aspectj.version>1.9.7</org.aspectj.version>
<cz.cvut.kbss.jopa.version>0.18.5</cz.cvut.kbss.jopa.version>
<cz.cvut.kbss.jb4jsonld.version>0.9.0</cz.cvut.kbss.jb4jsonld.version>
<org.eclipse.rdf4j.version>3.7.6</org.eclipse.rdf4j.version>
<ch.qos.logback.version>1.2.11</ch.qos.logback.version>
<com.github.galigator.openllet.version>2.6.4</com.github.galigator.openllet.version>
<com.github.ledsoft.jopa-spring-transactions.version>0.1.2</com.github.ledsoft.jopa-spring-transactions.version>

<org.springframework.version>5.3.17</org.springframework.version>
<org.springframework.boot.version>2.6.5</org.springframework.boot.version>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>9</source>
<target>9</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.14.0</version>
<configuration>
<complianceLevel>${jdk.version}</complianceLevel>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<aspectLibraries>
<aspectLibrary>
<groupId>cz.cvut.kbss.jopa</groupId>
<artifactId>jopa-impl</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<version>${org.aspectj.version}</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>${org.aspectj.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<phase>process-classes</phase>
<goals>
<goal>compile</goal>
<!-- use this goal to weave all your main classes -->
<goal>test-compile</goal>
<!-- use this goal to weave all your test classes -->
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.7</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>cz.cvut.kbss</groupId>
Expand Down

0 comments on commit e94350b

Please sign in to comment.