Skip to content

Commit cdff57f

Browse files
committed
Updating pom.xml to accept Java 8
As suggested by @nbartels: ralfstx#95 (comment)
1 parent 3c51960 commit cdff57f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ target/
33
.history/
44

55
# IntelliJ IDEA files
6-
.idea/
6+
.idea/
7+
*.iml

com.eclipsesource.json/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232
<configuration>
3333
<signature>
3434
<groupId>org.codehaus.mojo.signature</groupId>
35-
<artifactId>java15</artifactId>
35+
<artifactId>java18</artifactId>
3636
<version>1.0</version>
3737
</signature>
3838
</configuration>
3939
<executions>
4040
<execution>
41-
<id>ensure-java-1.5-class-library</id>
41+
<id>ensure-java-1.8-class-library</id>
4242
<phase>test</phase>
4343
<goals>
4444
<goal>check</goal>
@@ -82,7 +82,7 @@
8282
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
8383
<Bundle-Name>${project.name}</Bundle-Name>
8484
<Bundle-Version>${project.version}</Bundle-Version>
85-
<Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
85+
<Bundle-RequiredExecutionEnvironment>J2SE-1.8</Bundle-RequiredExecutionEnvironment>
8686
<Import-Package><!-- without this empty statement, a package import is added --></Import-Package>
8787
<Export-Package>com.eclipsesource.json;version="${project.version}"</Export-Package>
8888
</instructions>

0 commit comments

Comments
 (0)