Skip to content

Commit ef36938

Browse files
committed
1 parent 8963442 commit ef36938

File tree

6 files changed

+11
-227
lines changed

6 files changed

+11
-227
lines changed

jna-jnaerator/pom.xml

Lines changed: 0 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
<packaging>jar</packaging>
1111

1212
<dependencies>
13-
1413

1514
<dependency>
1615
<groupId>net.java.dev.jna</groupId>
@@ -28,60 +27,6 @@
2827
<relativePath>../parent</relativePath>
2928
</parent>
3029

31-
<build>
32-
<plugins>
33-
34-
35-
<plugin>
36-
<groupId>org.apache.maven.plugins</groupId>
37-
<artifactId>maven-compiler-plugin</artifactId>
38-
<version>2.0.2</version>
39-
<configuration>
40-
<source>1.5</source>
41-
<target>1.5</target>
42-
</configuration>
43-
</plugin>
44-
45-
<plugin>
46-
<groupId>org.apache.maven.plugins</groupId>
47-
<artifactId>maven-shade-plugin</artifactId>
48-
<version>1.3.3</version>
49-
<executions>
50-
<execution>
51-
<phase>package</phase>
52-
<goals>
53-
<goal>shade</goal>
54-
</goals>
55-
<configuration>
56-
<!--shadedArtifactAttached>true</shadedArtifactAttached-->
57-
<!--shadedArtifactId>${project.artifactId}-standalone</shadedArtifactId-->
58-
<!--finalName>${project.artifactId}-standalone-${project.version}</finalName-->
59-
<artifactSet>
60-
<excludes>
61-
<exclude>org.scala-lang:scala-library</exclude>
62-
<exclude>org.slf4j:slf4j-jdk14</exclude>
63-
<exclude>junit:junit</exclude>
64-
</excludes>
65-
</artifactSet>
66-
67-
68-
<filters>
69-
<filter>
70-
<artifact>*:*</artifact>
71-
<excludes>
72-
<exclude>META-INF/*.SF</exclude>
73-
<exclude>META-INF/*.DSA</exclude>
74-
<exclude>META-INF/*.RSA</exclude>
75-
</excludes>
76-
</filter>
77-
</filters>
78-
</configuration>
79-
</execution>
80-
</executions>
81-
</plugin>
82-
83-
</plugins>
84-
</build>
8530
</project>
8631

8732

jnaerator-rococoa-runtime/pom.xml

Lines changed: 1 addition & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111

1212
<dependencies>
1313

14-
15-
1614
<dependency>
1715
<groupId>com.jnaerator</groupId>
1816
<artifactId>jnaerator-runtime</artifactId>
@@ -21,6 +19,7 @@
2119
<scope>compile</scope>
2220
<optional>false</optional>
2321
</dependency>
22+
2423
<dependency>
2524
<groupId>org.rococoa</groupId>
2625
<artifactId>rococoa-core</artifactId>
@@ -38,60 +37,6 @@
3837
<relativePath>../parent</relativePath>
3938
</parent>
4039

41-
<build>
42-
<plugins>
43-
44-
45-
<plugin>
46-
<groupId>org.apache.maven.plugins</groupId>
47-
<artifactId>maven-compiler-plugin</artifactId>
48-
<version>2.0.2</version>
49-
<configuration>
50-
<source>1.5</source>
51-
<target>1.5</target>
52-
</configuration>
53-
</plugin>
54-
55-
<plugin>
56-
<groupId>org.apache.maven.plugins</groupId>
57-
<artifactId>maven-shade-plugin</artifactId>
58-
<version>1.3.3</version>
59-
<executions>
60-
<execution>
61-
<phase>package</phase>
62-
<goals>
63-
<goal>shade</goal>
64-
</goals>
65-
<configuration>
66-
<shadedArtifactAttached>true</shadedArtifactAttached>
67-
<!--shadedArtifactId>${project.artifactId}-standalone</shadedArtifactId-->
68-
<!--finalName>${project.artifactId}-standalone-${project.version}</finalName-->
69-
<artifactSet>
70-
<excludes>
71-
<exclude>org.scala-lang:scala-library</exclude>
72-
<exclude>org.slf4j:slf4j-jdk14</exclude>
73-
<exclude>com.sun.jna:jna</exclude>
74-
<exclude>junit:junit</exclude>
75-
</excludes>
76-
</artifactSet>
77-
78-
<filters>
79-
<filter>
80-
<artifact>*:*</artifact>
81-
<excludes>
82-
<exclude>META-INF/*.SF</exclude>
83-
<exclude>META-INF/*.DSA</exclude>
84-
<exclude>META-INF/*.RSA</exclude>
85-
</excludes>
86-
</filter>
87-
</filters>
88-
</configuration>
89-
</execution>
90-
</executions>
91-
</plugin>
92-
93-
</plugins>
94-
</build>
9540
</project>
9641

9742

jnaerator-runtime/pom.xml

Lines changed: 3 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -18,29 +18,13 @@
1818
<scope>compile</scope>
1919
</dependency>
2020

21-
<!--
22-
<dependency>
23-
<groupId>com.nativelibs4java</groupId>
24-
<artifactId>nl4j-runtime-structs-jna</artifactId>
25-
<version>${nl4j-runtime.version}</version>
26-
<scope>compile</scope>
27-
</dependency>
28-
-->
29-
3021
<dependency>
3122
<groupId>com.jnaerator</groupId>
3223
<artifactId>jna-jnaerator</artifactId>
3324
<version>3.2.4</version>
3425
<scope>compile</scope>
3526
</dependency>
36-
37-
<dependency>
38-
<groupId>junit</groupId>
39-
<artifactId>junit</artifactId>
40-
<version>4.7</version>
41-
<scope>test</scope>
42-
</dependency>
43-
27+
4428
</dependencies>
4529
<parent>
4630
<groupId>com.jnaerator</groupId>
@@ -49,24 +33,13 @@
4933
<relativePath>../parent</relativePath>
5034
</parent>
5135

52-
5336
<build>
5437
<plugins>
5538

56-
<plugin>
57-
<groupId>org.apache.maven.plugins</groupId>
58-
<artifactId>maven-compiler-plugin</artifactId>
59-
<version>2.0.2</version>
60-
<configuration>
61-
<source>1.5</source>
62-
<target>1.5</target>
63-
</configuration>
64-
</plugin>
65-
66-
6739
<plugin>
6840
<groupId>org.apache.maven.plugins</groupId>
6941
<artifactId>maven-shade-plugin</artifactId>
42+
<version>1.3.3</version>
7043
<executions>
7144

7245
<execution>
@@ -80,15 +53,10 @@
8053
<!--shadedClassifierName>webstart</shadedClassifierName-->
8154
<filters>
8255
<filter>
83-
8456
<artifact>com.jnaerator:jna-jnaerator</artifact>
85-
8657
<excludes>
87-
8858
<exclude>META-INF/**</exclude>
89-
90-
</excludes>
91-
59+
</excludes>
9260
</filter>
9361
</filters>
9462
</configuration>

jnaerator/pom.xml

Lines changed: 7 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,6 @@ Users who are looking for ready-to-use libraries should check the NativeLibs4Jav
4949

5050
<dependencies>
5151

52-
53-
54-
55-
56-
57-
58-
59-
6052
<dependency>
6153
<groupId>com.ochafik</groupId>
6254
<artifactId>ochafik-swing</artifactId>
@@ -65,6 +57,7 @@ Users who are looking for ready-to-use libraries should check the NativeLibs4Jav
6557
<scope>compile</scope>
6658
<optional>false</optional>
6759
</dependency>
60+
6861
<dependency>
6962
<groupId>com.jnaerator</groupId>
7063
<artifactId>jnaerator-rococoa-runtime</artifactId>
@@ -73,6 +66,7 @@ Users who are looking for ready-to-use libraries should check the NativeLibs4Jav
7366
<scope>compile</scope>
7467
<optional>false</optional>
7568
</dependency>
69+
7670
<dependency>
7771
<groupId>com.nativelibs4java</groupId>
7872
<artifactId>bridj</artifactId>
@@ -81,6 +75,7 @@ Users who are looking for ready-to-use libraries should check the NativeLibs4Jav
8175
<scope>compile</scope>
8276
<optional>false</optional>
8377
</dependency>
78+
8479
<dependency>
8580
<groupId>com.jnaerator</groupId>
8681
<artifactId>jnaerator-parser</artifactId>
@@ -89,6 +84,7 @@ Users who are looking for ready-to-use libraries should check the NativeLibs4Jav
8984
<scope>compile</scope>
9085
<optional>false</optional>
9186
</dependency>
87+
9288
<dependency>
9389
<groupId>org.anarres.cpp</groupId>
9490
<artifactId>anarres-cpp-jnaerator</artifactId>
@@ -97,6 +93,7 @@ Users who are looking for ready-to-use libraries should check the NativeLibs4Jav
9793
<scope>compile</scope>
9894
<optional>false</optional>
9995
</dependency>
96+
10097
<dependency>
10198
<groupId>org.eclipse.jdt</groupId>
10299
<artifactId>core</artifactId>
@@ -105,20 +102,12 @@ Users who are looking for ready-to-use libraries should check the NativeLibs4Jav
105102
<scope>compile</scope>
106103
<optional>false</optional>
107104
</dependency>
105+
108106
</dependencies>
107+
109108
<build>
110109
<plugins>
111110

112-
<plugin>
113-
<groupId>org.apache.maven.plugins</groupId>
114-
<artifactId>maven-compiler-plugin</artifactId>
115-
<version>2.0.2</version>
116-
<configuration>
117-
<source>1.6</source>
118-
<target>1.6</target>
119-
</configuration>
120-
</plugin>
121-
122111
<plugin>
123112
<groupId>org.apache.maven.plugins</groupId>
124113
<artifactId>maven-jar-plugin</artifactId>
@@ -156,34 +145,6 @@ Users who are looking for ready-to-use libraries should check the NativeLibs4Jav
156145
</executions>
157146
</plugin>
158147

159-
<plugin>
160-
<groupId>org.apache.maven.plugins</groupId>
161-
<artifactId>maven-shade-plugin</artifactId>
162-
<version>1.2.1</version>
163-
<executions>
164-
165-
<execution>
166-
<phase>package</phase>
167-
<goals>
168-
<goal>shade</goal>
169-
</goals>
170-
<configuration>
171-
<shadedArtifactAttached>true</shadedArtifactAttached>
172-
<!--finalName>${project.artifactId}-standalone-${project.version}</finalName-->
173-
<artifactSet>
174-
<excludes>
175-
<exclude>org.scala-lang:scala-library</exclude>
176-
<exclude>org.slf4j:slf4j-jdk14</exclude>
177-
<exclude>junit:junit</exclude>
178-
</excludes>
179-
</artifactSet>
180-
181-
</configuration>
182-
</execution>
183-
184-
</executions>
185-
</plugin>
186-
187148
</plugins>
188149
</build>
189150
</project>

maven-jnaerator-plugin/pom.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,6 @@
4747
<type>jar</type>
4848
<optional>false</optional>
4949
</dependency>
50-
<dependency>
51-
<groupId>junit</groupId>
52-
<artifactId>junit</artifactId>
53-
<version>3.8.1</version>
54-
<type>jar</type>
55-
<scope>test</scope>
56-
<optional>false</optional>
57-
</dependency>
5850
</dependencies>
5951
</project>
6052

ochafik-util/pom.xml

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -15,34 +15,7 @@
1515
<version>0.9.4-SNAPSHOT</version>
1616
<relativePath>../parent</relativePath>
1717
</parent>
18-
19-
<dependencies>
2018

21-
<dependency>
22-
<groupId>junit</groupId>
23-
<artifactId>junit</artifactId>
24-
<version>4.7</version>
25-
<scope>provided</scope>
26-
</dependency>
27-
28-
</dependencies>
29-
30-
<build>
31-
<plugins>
32-
33-
<plugin>
34-
<groupId>org.apache.maven.plugins</groupId>
35-
<artifactId>maven-compiler-plugin</artifactId>
36-
<version>2.0.2</version>
37-
<configuration>
38-
<source>1.5</source>
39-
<target>1.5</target>
40-
</configuration>
41-
</plugin>
42-
43-
</plugins>
44-
</build>
45-
4619
</project>
4720

4821

0 commit comments

Comments
 (0)