Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
/target
.idea/
*.iml
*.iws
*.ipr

2 changes: 1 addition & 1 deletion Capstanfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Name of the base image. Capstan will download this automatically from
# Cloudius S3 repository.
#
base: cloudius/osv-openjdk
base: cloudius/osv-openjdk8

#
# The command line passed to OSv to start up the application.
Expand Down
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
Expand Down