-
Notifications
You must be signed in to change notification settings - Fork 2
/
pom.xml
127 lines (115 loc) · 5.06 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>
<groupId>org.liquibase.ext</groupId>
<artifactId>liquibase-couchbase-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<description>Liquibase extension for Couchbase</description>
<url>https://docs.liquibase.com</url>
<organization>
<name>Liquibase.org</name>
<url>http://www.liquibase.org</url>
</organization>
<licenses>
<license>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<name>Apache License, Version 2.0</name>
</license>
</licenses>
<developers>
<developer>
<name>Andrey Zakharov</name>
<email>[email protected]</email>
<organization>Weigandt Consulting GmbH</organization>
<organizationUrl>https://www.weigandt-consulting.com/</organizationUrl>
</developer>
<developer>
<name>Viktor Ignatev</name>
<email>[email protected]</email>
<organization>Weigandt Consulting GmbH</organization>
<organizationUrl>https://www.weigandt-consulting.com/</organizationUrl>
</developer>
<developer>
<name>Konstantin Umanets</name>
<email>[email protected]</email>
<organization>Weigandt Consulting GmbH</organization>
<organizationUrl>https://www.weigandt-consulting.com/</organizationUrl>
</developer>
<developer>
<name>Roman Oborin</name>
<email>[email protected]</email>
<organization>Weigandt Consulting GmbH</organization>
<organizationUrl>https://www.weigandt-consulting.com/</organizationUrl>
</developer>
<developer>
<name>Dmitry Dashko</name>
<email>[email protected]</email>
<organization>Weigandt Consulting GmbH</organization>
<organizationUrl>https://www.weigandt-consulting.com/</organizationUrl>
</developer>
<developer>
<name>Evgenii Anishchenko</name>
<email>[email protected]</email>
<organization>Weigandt Consulting GmbH</organization>
<organizationUrl>https://www.weigandt-consulting.com/</organizationUrl>
</developer>
</developers>
<modules>
<module>liquibase-couchbase</module>
<module>test-project</module>
<module>spring-boot-starter-liquibase-couchbase</module>
<module>spring-boot-starter-liquibase-couchbase-test</module>
<module>cli-test</module>
</modules>
<scm>
<connection>scm:https://gitlab.weigandt-consulting.com/viktor.ignatev/couchbase-liquibase.git</connection>
<developerConnection>scm:git:ssh://gitlabssh.weigandt-consulting.com:viktor.ignatev/couchbase-liquibase.git</developerConnection>
<url>https://gitlab.weigandt-consulting.com/viktor.ignatev/couchbase-liquibase</url>
</scm>
<properties>
<build.version>0.1.2-ER</build.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<liquibase.core.version>4.22.0</liquibase.core.version>
<slf4j.version>2.0.7</slf4j.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.5.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<outputDirectory>${project.build.directory}/flattened-pom</outputDirectory>
<flattenedPomFilename>release.pom.xml</flattenedPomFilename>
<pomElements>
<profiles>remove</profiles>
<organization/>
<issueManagement/>
</pomElements>
<flattenMode>ossrh</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
</execution>
<execution>
<id>flatten.clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>