Skip to content

Commit

Permalink
copy pom resource to target (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdimascio authored Sep 20, 2020
1 parent 6a06709 commit 9543c45
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@
<description>Environment based config for the JVM</description>
<url>https://github.com/cdimascio/dotenv-java</url>


<groupId>io.github.cdimascio</groupId>
<artifactId>dotenv-java</artifactId>
<version>1.0.3</version>
<version>1.1.0</version>

<licenses>
<license>
Expand Down Expand Up @@ -159,6 +160,29 @@
</dependency>
</dependencies>
</plugin>

<plugin>
<groupId>com.coderplus.maven.plugins</groupId>
<artifactId>copy-rename-maven-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<id>copy-file</id>
<phase>compile</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<fileSets>
<fileSet>
<sourceFile>${project.basedir}/pom.xml</sourceFile>
<destinationFile>${project.build.directory}/dotenv-java-1.1.0.pom</destinationFile>
</fileSet>
</fileSets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 9543c45

Please sign in to comment.