diff --git a/.travis.yml b/.travis.yml index 9bcf999..7c8e2d3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,3 @@ language: java jdk: - - oraclejdk8 + - oraclejdk13 diff --git a/pom.xml b/pom.xml index 544faf3..1c1bcee 100644 --- a/pom.xml +++ b/pom.xml @@ -1,11 +1,12 @@ - + 4.0.0 com.profesorfalken jPowerShell 3.1.1 jar - + jPowerShell API to use PowerShell from Java https://github.com/profesorfalken/jPowerShell @@ -17,7 +18,7 @@ repo - + Javier Garcia Alonso @@ -26,11 +27,11 @@ http://www.profesorfalken.com - + https://github.com/profesorfalken/jPowerShell.git - + ossrh @@ -41,7 +42,20 @@ https://oss.sonatype.org/service/local/staging/deploy/maven2/ - + + + + + org.apache.maven.plugins + maven-compiler-plugin + + ${maven.compiler.source} + ${maven.compiler.target} + + + + + release-profile @@ -68,8 +82,8 @@ verify sign - - + + @@ -105,8 +119,8 @@ - - + + junit @@ -117,8 +131,8 @@ UTF-8 - 1.8 - 1.8 - 1.8 + 13 + 13 + 13 diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java new file mode 100644 index 0000000..1fc7ae1 --- /dev/null +++ b/src/main/java/module-info.java @@ -0,0 +1,20 @@ +/* + * Copyright 2016-2019 Javier Garcia Alonso. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +module com.profesorfalken.jPowerShell { + requires java.logging; + + exports com.profesorfalken.jpowershell; +} \ No newline at end of file