Skip to content

Commit ed9e0e0

Browse files
committed
Revert "SQUASH: cannot get project to work with both java 5 and Java 6 compatibility. Bail on it."
This reverts commit 460628b.
1 parent 460628b commit ed9e0e0

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

pom.xml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>bridj</artifactId>
66
<name>BridJ (NativeLibs4Java C/C++ Interop Layer)</name>
77
<url>http://code.google.com/p/bridj/</url>
8-
<version>0.9.0-SNAPSHOT</version>
8+
<version>0.8.0-SNAPSHOT</version>
99
<packaging>bundle</packaging>
1010
<repositories>
1111
<repository>
@@ -25,9 +25,8 @@
2525
<properties>
2626
<versionSpecificSubPackage>v0_7_0</versionSpecificSubPackage>
2727
<maven.compiler.optimize>true</maven.compiler.optimize>
28-
<!--<maven.compiler.testSource>6</maven.compiler.testSource>-->
29-
<!--<maven.compiler.testTarget>6</maven.compiler.testTarget>-->
30-
<maven.javadoc.skip>true</maven.javadoc.skip>
28+
<maven.compiler.testSource>6</maven.compiler.testSource>
29+
<maven.compiler.testTarget>6</maven.compiler.testTarget>
3130
</properties>
3231
<scm>
3332
<connection>scm:git:git@github.com:nativelibs4java/BridJ.git</connection>
@@ -112,7 +111,7 @@
112111
</javahClassNames>
113112
</configuration>
114113
</plugin-->
115-
<!--<plugin>
114+
<plugin>
116115
<artifactId>maven-compiler-plugin</artifactId>
117116
<version>3.6.0</version>
118117
<executions>
@@ -128,7 +127,7 @@
128127
</configuration>
129128
</execution>
130129
</executions>
131-
</plugin>-->
130+
</plugin>
132131
<plugin>
133132
<groupId>org.apache.felix</groupId>
134133
<artifactId>maven-bundle-plugin</artifactId>

src/test/java/org/bridj/ObjectiveCTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ public void testNativeDelegate() {
289289
testDelegate(new DelgImpl());
290290
}
291291
static class MyDelg extends ObjCProxy implements Delg {
292-
//@Override
292+
@Override
293293
public int add_to(int a, int b) {
294294
return a + b;
295295
}

0 commit comments

Comments
 (0)