1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <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">
- <parent>
- <groupId>com.zlt</groupId>
- <artifactId>zlt-transaction</artifactId>
- <version>2.7.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>txlcn-tm</artifactId>
- <description>tx-lcn事务管理器</description>
- <dependencies>
- <dependency>
- <groupId>com.zlt</groupId>
- <artifactId>zlt-config</artifactId>
- <exclusions>
- <exclusion>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.zlt</groupId>
- <artifactId>zlt-log-spring-boot-starter</artifactId>
- </dependency>
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
- </dependency>
- <dependency>
- <groupId>com.codingapi.txlcn</groupId>
- <artifactId>txlcn-tm</artifactId>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>com.spotify</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <configuration>
- <imageName>${docker.image.prefix}/${project.artifactId}</imageName>
- <imageTags>
- <imageTag>${project.version}</imageTag>
- <imageTag>latest</imageTag>
- </imageTags>
- <forceTags>true</forceTags>
- <baseImage>${docker.baseImage}</baseImage>
- <volumes>${docker.volumes}</volumes>
- <env>
- <JAVA_OPTS>${docker.java.opts}</JAVA_OPTS>
- </env>
- <entryPoint>["java ","$JAVA_OPTS ${docker.java.security.egd} ","-jar
- ","/${project.build.finalName}.jar"]
- </entryPoint>
- <resources>
- <resource>
- <targetPath>/</targetPath>
- <directory>${project.build.directory}</directory>
- <include>${project.build.finalName}.jar</include>
- </resource>
- </resources>
- </configuration>
- </plugin>
- </plugins>
- <finalName>${project.artifactId}</finalName>
- </build>
- </project>
|