Skip to content

Commit 1eed35b

Browse files
committed
fix the build and set java 6 as a minimum
1 parent 7a0016f commit 1eed35b

5 files changed

Lines changed: 20 additions & 14 deletions

File tree

.idea/compiler.xml

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

justjournal-client-java.iml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
3-
<component name="NewModuleRootManager" inherit-compiler-output="false">
3+
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_6" inherit-compiler-output="false">
44
<output url="file://$MODULE_DIR$/target/classes" />
55
<output-test url="file://$MODULE_DIR$/target/test-classes" />
66
<content url="file://$MODULE_DIR$">
@@ -11,7 +11,7 @@
1111
</content>
1212
<orderEntry type="inheritedJdk" />
1313
<orderEntry type="sourceFolder" forTests="false" />
14-
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.8.1" level="project" />
14+
<orderEntry type="library" scope="TEST" name="Maven: junit:junit:4.11" level="project" />
15+
<orderEntry type="library" scope="TEST" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
1516
</component>
16-
</module>
17-
17+
</module>

pom.xml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>justjournal-client-java</groupId>
88
<artifactId>javajj</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.0</version>
1010

1111
<build>
1212
<plugins>
@@ -18,19 +18,27 @@
1818
<archive>
1919
<manifest>
2020
<mainClass>jjClient</mainClass>
21-
<url>https://github.com/laffer1/justjournal-client-java</url>
2221
</manifest>
2322
</archive>
2423
</configuration>
2524
</plugin>
25+
<plugin>
26+
<groupId>org.apache.maven.plugins</groupId>
27+
<artifactId>maven-compiler-plugin</artifactId>
28+
<version>3.3</version>
29+
<configuration>
30+
<source>1.6</source>
31+
<target>1.6</target>
32+
</configuration>
33+
</plugin>
2634
</plugins>
2735
</build>
2836

2937
<dependencies>
3038
<dependency>
3139
<groupId>junit</groupId>
3240
<artifactId>junit</artifactId>
33-
<version>4.8.1</version>
41+
<version>4.11</version>
3442
<scope>test</scope>
3543
</dependency>
3644
</dependencies>

0 commit comments

Comments
 (0)