|
17 | 17 | ~ limitations under the License. |
18 | 18 | --> |
19 | 19 |
|
20 | | -<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"> |
21 | | - <modelVersion>4.0.0</modelVersion> |
| 20 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 21 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
22 | 23 |
|
23 | 24 | <parent> |
24 | 25 | <groupId>net.openhft</groupId> |
25 | 26 | <artifactId>java-parent-pom</artifactId> |
26 | | - <version>1.1.2</version> |
| 27 | + <version>1.1.4</version> |
27 | 28 | <relativePath /> |
28 | 29 | </parent> |
29 | 30 |
|
| 31 | + <modelVersion>4.0.0</modelVersion> |
30 | 32 | <artifactId>affinity</artifactId> |
31 | 33 | <version>2.3-SNAPSHOT</version> |
32 | 34 | <packaging>bundle</packaging> |
|
51 | 53 | </dependencyManagement> |
52 | 54 |
|
53 | 55 | <dependencies> |
54 | | - <!-- on linux install with sudo apt-get install libjna-java --> |
55 | | - |
56 | 56 | <dependency> |
57 | 57 | <groupId>org.slf4j</groupId> |
58 | 58 | <artifactId>slf4j-api</artifactId> |
|
90 | 90 |
|
91 | 91 | <build> |
92 | 92 | <plugins> |
| 93 | + <plugin> |
| 94 | + <groupId>org.apache.maven.plugins</groupId> |
| 95 | + <artifactId>maven-compiler-plugin</artifactId> |
| 96 | + <configuration> |
| 97 | + <compilerArgument>-Xlint:deprecation</compilerArgument> |
| 98 | + <source>1.7</source> |
| 99 | + <target>1.7</target> |
| 100 | + <encoding>UTF-8</encoding> |
| 101 | + </configuration> |
| 102 | + </plugin> |
93 | 103 | <plugin> |
94 | 104 | <groupId>org.apache.maven.plugins</groupId> |
95 | 105 | <artifactId>maven-scm-publish-plugin</artifactId> |
|
133 | 143 | <Bundle-Name>OpenHFT :: ${project.artifactId}</Bundle-Name> |
134 | 144 | <Bundle-Version>${project.version}</Bundle-Version> |
135 | 145 | <Import-Package> |
136 | | - com.sun.jna.platform.win32;resolution:=optional, |
137 | 146 | com.sun.jna.platform.*;resolution:=optional, |
138 | 147 | * |
139 | 148 | </Import-Package> |
|
0 commit comments