|
6 | 6 | <artifactId>java-objectivec-bridge</artifactId> |
7 | 7 | <version>1.0-SNAPSHOT</version> |
8 | 8 | <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> |
9 | 15 |
|
10 | 16 | <profiles> |
11 | 17 | <profile> |
|
26 | 32 | <xcodeScheme>Debug</xcodeScheme> |
27 | 33 | </properties> |
28 | 34 |
|
| 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 | + |
29 | 66 | <build> |
30 | 67 | <plugins> |
31 | 68 | <plugin> |
|
98 | 135 | <dependency> |
99 | 136 | <groupId>net.java.dev.jna</groupId> |
100 | 137 | <artifactId>jna</artifactId> |
101 | | - <version>5.3.1</version> |
| 138 | + <version>5.4.0</version> |
102 | 139 | </dependency> |
103 | 140 |
|
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> --> |
109 | 146 |
|
110 | 147 | <dependency> |
111 | 148 | <groupId>org.junit.jupiter</groupId> |
112 | 149 | <artifactId>junit-jupiter-api</artifactId> |
113 | | - <version>5.5.0</version> |
| 150 | + <version>5.5.1</version> |
114 | 151 | <scope>test</scope> |
115 | 152 | </dependency> |
116 | 153 | <dependency> |
117 | 154 | <groupId>org.junit.vintage</groupId> |
118 | 155 | <artifactId>junit-vintage-engine</artifactId> |
119 | | - <version>5.5.0</version> |
| 156 | + <version>5.5.1</version> |
120 | 157 | <scope>test</scope> |
121 | 158 | </dependency> |
122 | 159 |
|
|
0 commit comments