-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix deploy, update version to 0.1.2-ER
- Loading branch information
1 parent
396d4d6
commit d5bc61c
Showing
2 changed files
with
64 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,6 @@ | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<description>Liquibase extension for Couchbase</description> | ||
<url>https://docs.liquibase.com</url> | ||
|
||
<parent> | ||
<groupId>org.liquibase.ext</groupId> | ||
<artifactId>liquibase-couchbase-parent</artifactId> | ||
|
@@ -16,6 +13,7 @@ | |
<artifactId>liquibase-couchbase</artifactId> | ||
<version>${build.version}</version> | ||
<packaging>jar</packaging> | ||
<url>https://docs.liquibase.com</url> | ||
|
||
<properties> | ||
<build.version>0.1.2-ER</build.version> | ||
|
@@ -62,6 +60,12 @@ | |
<gmavenplus-plugin.version>1.9.0</gmavenplus-plugin.version> | ||
</properties> | ||
|
||
<scm> | ||
<connection>scm:https://github.com/liquibase/liquibase-couchbase.git</connection> | ||
<developerConnection>scm:git:[email protected]:liquibase/liquibase-couchbase.git</developerConnection> | ||
<url>https://github.com/liquibase/liquibase-couchbase.git</url> | ||
</scm> | ||
|
||
<dependencies> | ||
<!-- compile dependencies --> | ||
<dependency> | ||
|
@@ -405,29 +409,6 @@ | |
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>com.coderplus.maven.plugins</groupId> | ||
<artifactId>copy-rename-maven-plugin</artifactId> | ||
<version>1.0</version> | ||
<executions> | ||
<execution> | ||
<id>copy</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>copy</goal> | ||
</goals> | ||
<configuration> | ||
<fileSets> | ||
<fileSet> | ||
<sourceFile>${project.basedir}/pom.xml</sourceFile> | ||
<destinationFile>${project.basedir}/target/${project.artifactId}-${project.version}.pom</destinationFile> | ||
</fileSet> | ||
</fileSets> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
|
@@ -466,6 +447,25 @@ | |
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>flatten-maven-plugin</artifactId> | ||
<version>1.5.0</version> | ||
<configuration> | ||
<outputDirectory>${project.build.directory}</outputDirectory> | ||
<flattenedPomFilename>${project.artifactId}-${project.version}.pom.xml</flattenedPomFilename> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>flatten</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>flatten</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<!--> Currently not used in CI/CD. But we can use it later --> | ||
<!-- <plugin>--> | ||
<!-- <groupId>org.apache.maven.plugins</groupId>--> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters