Skip to content

Commit ea43201

Browse files
committed
refactor the project into a multi module structure
1 parent 0edb265 commit ea43201

File tree

77 files changed

+99
-32
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+99
-32
lines changed

core/pom.xml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<parent>
6+
<groupId>tel.schich</groupId>
7+
<artifactId>javacan</artifactId>
8+
<version>3.0.0-SNAPSHOT</version>
9+
</parent>
10+
11+
<artifactId>javacan-core</artifactId>
12+
13+
<dependencies>
14+
<dependency>
15+
<groupId>tel.schich</groupId>
16+
<artifactId>jni-access-generator</artifactId>
17+
</dependency>
18+
</dependencies>
19+
20+
<build>
21+
<plugins>
22+
<plugin>
23+
<groupId>org.apache.maven.plugins</groupId>
24+
<artifactId>maven-compiler-plugin</artifactId>
25+
<version>3.8.0</version>
26+
<configuration>
27+
<source>1.8</source>
28+
<target>1.8</target>
29+
<optimize>true</optimize>
30+
<showWarnings>true</showWarnings>
31+
<showDeprecation>true</showDeprecation>
32+
</configuration>
33+
<executions>
34+
<execution>
35+
<id>default-compile</id>
36+
<configuration>
37+
<compilerArgs>
38+
<compilerArg>-Agenerate.jni.headers=true</compilerArg>
39+
<compilerArg>-Aoutput.location=${headers.target}</compilerArg>
40+
</compilerArgs>
41+
</configuration>
42+
</execution>
43+
</executions>
44+
</plugin>
45+
<plugin>
46+
<groupId>org.codehaus.mojo</groupId>
47+
<artifactId>exec-maven-plugin</artifactId>
48+
</plugin>
49+
</plugins>
50+
</build>
51+
</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)