1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-pom</artifactId>
- <version>1.1.4</version>
- <relativePath />
- </parent>
- <artifactId>platomix-gmetry-upgrade</artifactId>
- <version>4.0.5-20240919</version>
- <dependencies>
- <dependency>
- <groupId>com.platomix</groupId>
- <artifactId>platomix-gmetry-framework</artifactId>
- <version>2.3.5</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>3.9</version>
- </dependency>
- <dependency>
- <groupId>net.lingala.zip4j</groupId>
- <artifactId>zip4j</artifactId>
- <version>2.9.0</version>
- </dependency>
- <dependency>
- <groupId>com.kingbase8</groupId>
- <artifactId>kingbase8</artifactId>
- </dependency>
- </dependencies>
- <build>
- <finalName>platomix-gmetry-deploy</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>io.fabric8</groupId>
- <artifactId>docker-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>build-push</id>
- <phase>package</phase>
- <goals>
- <goal>build</goal>
- <goal>push</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <repositories>
- <repository>
- <id>alimaven</id>
- <name>aliyun maven</name>
- <url>https://maven.aliyun.com/repository/public/</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- <repository>
- <id>platomix-release</id>
- <name>NexusReleases</name>
- <url>http://windata.platomix.net/nexus/repository/maven-public/</url>
- </repository>
- </repositories>
- </project>
|