|
32 | 32 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
33 | 33 | </properties> |
34 | 34 |
|
| 35 | + <dependencyManagement> |
| 36 | + |
| 37 | + <dependencies> |
| 38 | + <!-- on linux install with sudo apt-get install libjna-java --> |
| 39 | + <dependency> |
| 40 | + <groupId>net.java.dev.jna</groupId> |
| 41 | + <artifactId>jna</artifactId> |
| 42 | + <version>4.1.0</version> |
| 43 | + </dependency> |
| 44 | + |
| 45 | + <dependency> |
| 46 | + <groupId>net.java.dev.jna</groupId> |
| 47 | + <artifactId>jna-platform</artifactId> |
| 48 | + <version>4.1.0</version> |
| 49 | + </dependency> |
| 50 | + |
| 51 | + <dependency> |
| 52 | + <groupId>org.kohsuke.jetbrains</groupId> |
| 53 | + <artifactId>annotations</artifactId> |
| 54 | + <version>9.0</version> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>org.easymock</groupId> |
| 58 | + <artifactId>easymock</artifactId> |
| 59 | + <version>3.2</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>junit</groupId> |
| 63 | + <artifactId>junit</artifactId> |
| 64 | + <version>4.11</version> |
| 65 | + </dependency> |
| 66 | + </dependencies> |
| 67 | + |
| 68 | + </dependencyManagement> |
| 69 | + |
35 | 70 | <dependencies> |
36 | 71 | <!-- on linux install with sudo apt-get install libjna-java --> |
37 | 72 | <dependency> |
38 | 73 | <groupId>net.java.dev.jna</groupId> |
39 | 74 | <artifactId>jna</artifactId> |
40 | | - <version>4.1.0</version> |
41 | 75 | </dependency> |
42 | 76 | <dependency> |
43 | 77 | <groupId>net.java.dev.jna</groupId> |
44 | 78 | <artifactId>jna-platform</artifactId> |
45 | | - <version>4.1.0</version> |
46 | 79 | </dependency> |
47 | 80 |
|
48 | 81 | <dependency> |
49 | 82 | <groupId>org.kohsuke.jetbrains</groupId> |
50 | 83 | <artifactId>annotations</artifactId> |
51 | | - <version>9.0</version> |
52 | 84 | <scope>compile</scope> |
53 | 85 | </dependency> |
54 | 86 |
|
55 | 87 | <dependency> |
56 | 88 | <groupId>org.easymock</groupId> |
57 | 89 | <artifactId>easymock</artifactId> |
58 | | - <version>3.2</version> |
59 | 90 | <scope>test</scope> |
60 | 91 | </dependency> |
61 | 92 | <dependency> |
62 | 93 | <groupId>junit</groupId> |
63 | 94 | <artifactId>junit</artifactId> |
64 | | - <version>4.11</version> |
65 | 95 | <scope>test</scope> |
66 | 96 | </dependency> |
67 | 97 | </dependencies> |
|
0 commit comments