|
5 | 5 | <artifactId>bridj</artifactId> |
6 | 6 | <name>BridJ (NativeLibs4Java C/C++ Interop Layer)</name> |
7 | 7 | <url>http://code.google.com/p/bridj/</url> |
8 | | - <version>0.7.1-SNAPSHOT</version> |
| 8 | + <version>0.8.0-SNAPSHOT</version> |
9 | 9 | <packaging>bundle</packaging> |
10 | 10 | <repositories> |
11 | 11 | <repository> |
|
25 | 25 | <properties> |
26 | 26 | <versionSpecificSubPackage>v0_7_0</versionSpecificSubPackage> |
27 | 27 | <maven.compiler.optimize>true</maven.compiler.optimize> |
| 28 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 29 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 30 | + <maven.compiler.testSource>1.8</maven.compiler.testSource> |
| 31 | + <maven.compiler.testTarget>1.8</maven.compiler.testTarget> |
| 32 | + <retrolambdaTarget>1.6</retrolambdaTarget> |
28 | 33 | </properties> |
29 | 34 | <scm> |
30 | 35 | <connection>scm:git:git@github.com:nativelibs4java/BridJ.git</connection> |
|
48 | 53 | <artifactId>asm</artifactId> |
49 | 54 | <version>5.0.3</version> |
50 | 55 | </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>com.fasterxml</groupId> |
| 58 | + <artifactId>classmate</artifactId> |
| 59 | + <version>1.3.3</version> |
| 60 | + </dependency> |
51 | 61 | <dependency> |
52 | 62 | <groupId>org.osgi</groupId> |
53 | 63 | <artifactId>org.osgi.core</artifactId> |
|
109 | 119 | </javahClassNames> |
110 | 120 | </configuration> |
111 | 121 | </plugin--> |
| 122 | + <plugin> |
| 123 | + <artifactId>maven-compiler-plugin</artifactId> |
| 124 | + <version>3.6.0</version> |
| 125 | + <configuration> |
| 126 | + <source>${maven.compiler.source}</source> |
| 127 | + <target>${maven.compiler.target}</target> |
| 128 | + <testSource>${maven.compiler.testSource}</testSource> |
| 129 | + <testTarget>${maven.compiler.testTarget}</testTarget> |
| 130 | + </configuration> |
| 131 | + <executions> |
| 132 | + <execution> |
| 133 | + <id>default-compile</id> |
| 134 | + <phase>compile</phase> |
| 135 | + <goals> |
| 136 | + <goal>compile</goal> |
| 137 | + </goals> |
| 138 | + <configuration> |
| 139 | + <source>${maven.compiler.source}</source> |
| 140 | + <target>${maven.compiler.target}</target> |
| 141 | + </configuration> |
| 142 | + </execution> |
| 143 | + <execution> |
| 144 | + <id>default-testCompile</id> |
| 145 | + <phase>test-compile</phase> |
| 146 | + <goals> |
| 147 | + <goal>testCompile</goal> |
| 148 | + </goals> |
| 149 | + <configuration> |
| 150 | + <testSource>${maven.compiler.testSource}</testSource> |
| 151 | + <testTarget>${maven.compiler.testTarget}</testTarget> |
| 152 | + </configuration> |
| 153 | + </execution> |
| 154 | + </executions> |
| 155 | + </plugin> |
| 156 | + <plugin> |
| 157 | + <groupId>net.orfjackal.retrolambda</groupId> |
| 158 | + <artifactId>retrolambda-maven-plugin</artifactId> |
| 159 | + <version>2.4.0</version> |
| 160 | + <executions> |
| 161 | + <execution> |
| 162 | + <goals> |
| 163 | + <goal>process-main</goal> |
| 164 | + <goal>process-test</goal> |
| 165 | + </goals> |
| 166 | + </execution> |
| 167 | + </executions> |
| 168 | + </plugin> |
112 | 169 | <plugin> |
113 | 170 | <groupId>org.apache.felix</groupId> |
114 | 171 | <artifactId>maven-bundle-plugin</artifactId> |
|
0 commit comments