Skip to content

Commit 807291d

Browse files
committed
added more infos to pom, updated deps
1 parent 8b90a08 commit 807291d

File tree

1 file changed

+45
-8
lines changed

1 file changed

+45
-8
lines changed

pom.xml

Lines changed: 45 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
<artifactId>java-objectivec-bridge</artifactId>
77
<version>1.0-SNAPSHOT</version>
88
<name>Java-Objective-C-Bridge</name>
9+
<description>A thin bridge that allows for two-way communication from Java to Objective-C.</description>
10+
<licenses>
11+
<license>
12+
<name>Apache 2.0 License</name>
13+
</license>
14+
</licenses>
915

1016
<profiles>
1117
<profile>
@@ -26,6 +32,37 @@
2632
<xcodeScheme>Debug</xcodeScheme>
2733
</properties>
2834

35+
<developers>
36+
<developer>
37+
<name>Steve Hannah</name>
38+
<roles>
39+
<role>Creator</role>
40+
</roles>
41+
<url>https://github.com/shannah</url>
42+
</developer>
43+
<developer>
44+
<name>Matthias Fuchs</name>
45+
<roles>
46+
<role>Developer</role>
47+
</roles>
48+
<url>https://github.com/mojo2012</url>
49+
</developer>
50+
</developers>
51+
52+
<issueManagement>
53+
<system>github</system>
54+
<url>https://github.com/shannah/Java-Objective-C-Bridge/issues</url>
55+
</issueManagement>
56+
57+
<url>https://github.com/shannah/Java-Objective-C-Bridge</url>
58+
59+
60+
61+
<scm>
62+
<url>https://github.com/shannah/Java-Objective-C-Bridge</url>
63+
</scm>
64+
65+
2966
<build>
3067
<plugins>
3168
<plugin>
@@ -98,25 +135,25 @@
98135
<dependency>
99136
<groupId>net.java.dev.jna</groupId>
100137
<artifactId>jna</artifactId>
101-
<version>5.3.1</version>
138+
<version>5.4.0</version>
102139
</dependency>
103140

104-
<dependency>
105-
<groupId>com.nativelibs4java</groupId>
106-
<artifactId>jnaerator-rococoa-runtime</artifactId>
107-
<version>0.12</version>
108-
</dependency>
141+
<!-- <dependency> -->
142+
<!-- <groupId>com.nativelibs4java</groupId> -->
143+
<!-- <artifactId>jnaerator-rococoa-runtime</artifactId> -->
144+
<!-- <version>0.12</version> -->
145+
<!-- </dependency> -->
109146

110147
<dependency>
111148
<groupId>org.junit.jupiter</groupId>
112149
<artifactId>junit-jupiter-api</artifactId>
113-
<version>5.5.0</version>
150+
<version>5.5.1</version>
114151
<scope>test</scope>
115152
</dependency>
116153
<dependency>
117154
<groupId>org.junit.vintage</groupId>
118155
<artifactId>junit-vintage-engine</artifactId>
119-
<version>5.5.0</version>
156+
<version>5.5.1</version>
120157
<scope>test</scope>
121158
</dependency>
122159

0 commit comments

Comments
 (0)