Skip to content

Commit

Permalink
6.3.0 upgrade dotenv-java and kotlin
Browse files Browse the repository at this point in the history
  • Loading branch information
cdimascio committed Nov 28, 2021
1 parent a3c8abf commit 2dcd5e1
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

```shell
# java 8 required
export JAVA_HOME=/path/to/java8/home
`export JAVA_HOME=/path/to/java8/home`

mvn build
mvn clean compile test
```

#### 3. Make a change
Expand Down
50 changes: 44 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>io.github.cdimascio</groupId>
<artifactId>dotenv-kotlin</artifactId>
<version>6.2.2</version>
<version>6.3.0</version>

<licenses>
<license>
Expand Down Expand Up @@ -50,11 +50,11 @@


<properties>
<dotenv.version>2.2.0</dotenv.version>
<dotenv.version>2.2.2</dotenv.version>
<kotlin.compiler.jvmTarget>1.8</kotlin.compiler.jvmTarget>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<kotlin.version>1.4.0</kotlin.version>
<kotlin.version>1.6.0</kotlin.version>
<main.class>io.cdimascio.DotenvKt</main.class>
<junit.version>4.13.1</junit.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -264,11 +264,49 @@
</plugins>
</build>


<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>github</id>
<name>Carmine M DiMascio</name>
<url>https://maven.pkg.github.com/cdimascio/dotenv-kotlin</url>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<!-- <repository>-->
<!-- <id>github</id>-->
<!-- <name>Carmine M DiMascio</name>-->
<!-- <url>https://maven.pkg.github.com/cdimascio/dotenv-kotlin</url>-->
<!-- </repository>-->
</distributionManagement>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 2dcd5e1

Please sign in to comment.