Skip to content

Commit

Permalink
maven source
Browse files Browse the repository at this point in the history
  • Loading branch information
ashah-splunk committed Sep 7, 2023
1 parent 51cacc1 commit 36c36a3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
9 changes: 9 additions & 0 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
Expand Down
1 change: 0 additions & 1 deletion java/src/test/java/com/splunk/examples/TestExamples.java
Original file line number Diff line number Diff line change
Expand Up @@ -336,5 +336,4 @@ public int executeCommand(String[] cmd) throws IOException, InterruptedException
printResults(process);
return process.waitFor();
}

}

0 comments on commit 36c36a3

Please sign in to comment.