mirror of
https://gitee.com/dcren/cloud-native-app-initializer.git
synced 2025-04-05 08:37:30 +08:00
extract start module (#59)
This commit is contained in:
parent
11ad90c33c
commit
033ab83006
2
.gitignore
vendored
2
.gitignore
vendored
@ -2,7 +2,7 @@ initializer-page/node/
|
|||||||
initializer-page/node_modules/
|
initializer-page/node_modules/
|
||||||
initializer-page/analysis/
|
initializer-page/analysis/
|
||||||
initializer-page/target/
|
initializer-page/target/
|
||||||
|
initializer-start/target/
|
||||||
initializer-generator/target/
|
initializer-generator/target/
|
||||||
|
|
||||||
node_modules/
|
node_modules/
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
FROM openjdk:17
|
FROM openjdk:17
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY initializer-generator/target/initializer-generator-0.8.jar /app
|
COPY initializer-generator/target/initializer-start-0.8.jar /app
|
||||||
COPY initializer-generator/target/classes/static /app
|
COPY initializer-generator/target/classes/static /app
|
||||||
|
|
||||||
EXPOSE 7001
|
EXPOSE 7001
|
||||||
CMD ["java","-jar","/app/initializer-generator-0.8.jar"]
|
CMD ["java","-jar","/app/initializer-start-0.8.jar"]
|
@ -52,11 +52,6 @@
|
|||||||
<artifactId>initializr-actuator</artifactId>
|
<artifactId>initializr-actuator</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.alibaba</groupId>
|
|
||||||
<artifactId>initializer-page</artifactId>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<!-- misc -->
|
<!-- misc -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.guava</groupId>
|
<groupId>com.google.guava</groupId>
|
||||||
@ -126,26 +121,4 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
|
||||||
<plugins>
|
|
||||||
<plugin>
|
|
||||||
<groupId>org.springframework.boot</groupId>
|
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
||||||
<version>2.3.7.RELEASE</version>
|
|
||||||
<configuration>
|
|
||||||
<mainClass>com.alibaba.initializer.start.Application</mainClass>
|
|
||||||
<attach>true</attach>
|
|
||||||
<classifier>fatjar</classifier>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>repackage</id>
|
|
||||||
<goals>
|
|
||||||
<goal>repackage</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
|
||||||
</build>
|
|
||||||
</project>
|
</project>
|
||||||
|
53
initializer-start/pom.xml
Normal file
53
initializer-start/pom.xml
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
<?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/maven-v4_0_0.xsd">
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>com.alibaba</groupId>
|
||||||
|
<artifactId>cloud-native-app-initializer</artifactId>
|
||||||
|
<version>${revision}</version>
|
||||||
|
<relativePath>../pom.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<artifactId>initializer-start</artifactId>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.alibaba</groupId>
|
||||||
|
<artifactId>initializer-generator</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.alibaba</groupId>
|
||||||
|
<artifactId>initializer-page</artifactId>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
<version>2.3.7.RELEASE</version>
|
||||||
|
<configuration>
|
||||||
|
<mainClass>com.alibaba.initializer.start.Application</mainClass>
|
||||||
|
<attach>true</attach>
|
||||||
|
<classifier>fatjar</classifier>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>repackage</id>
|
||||||
|
<goals>
|
||||||
|
<goal>repackage</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
78
pom.xml
78
pom.xml
@ -26,6 +26,7 @@
|
|||||||
<modules>
|
<modules>
|
||||||
<module>initializer-page</module>
|
<module>initializer-page</module>
|
||||||
<module>initializer-generator</module>
|
<module>initializer-generator</module>
|
||||||
|
<module>initializer-start</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
@ -48,29 +49,17 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.alibaba</groupId>
|
<groupId>com.alibaba</groupId>
|
||||||
<artifactId>initializer-generator</artifactId>
|
<artifactId>initializer-generator</artifactId>
|
||||||
<version>0.8</version>
|
<version>${revision}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.alibaba</groupId>
|
<groupId>com.alibaba</groupId>
|
||||||
<artifactId>initializer-page</artifactId>
|
<artifactId>initializer-page</artifactId>
|
||||||
<version>0.8</version>
|
<version>${revision}</version>
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.slf4j</groupId>
|
|
||||||
<artifactId>jcl-over-slf4j</artifactId>
|
|
||||||
<version>1.7.26</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.alibaba</groupId>
|
<groupId>com.alibaba</groupId>
|
||||||
<artifactId>fastjson</artifactId>
|
<artifactId>initializer-start</artifactId>
|
||||||
<version>1.2.68.noneautotype</version>
|
<version>${revision}</version>
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.google.guava</groupId>
|
|
||||||
<artifactId>guava</artifactId>
|
|
||||||
<version>20.0</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- support git protocol -->
|
<!-- support git protocol -->
|
||||||
@ -85,18 +74,7 @@
|
|||||||
<version>5.6.0.201912101111-r</version>
|
<version>5.6.0.201912101111-r</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<!-- misc -->
|
||||||
<groupId>org.mockito</groupId>
|
|
||||||
<artifactId>mockito-all</artifactId>
|
|
||||||
<version>${mockito-all.version}</version>
|
|
||||||
<scope>test</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.codehaus.groovy</groupId>
|
|
||||||
<artifactId>groovy</artifactId>
|
|
||||||
<version>2.5.8</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-configuration</groupId>
|
<groupId>commons-configuration</groupId>
|
||||||
<artifactId>commons-configuration</artifactId>
|
<artifactId>commons-configuration</artifactId>
|
||||||
@ -117,40 +95,28 @@
|
|||||||
<artifactId>commons-collections4</artifactId>
|
<artifactId>commons-collections4</artifactId>
|
||||||
<version>4.4</version>
|
<version>4.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.vladsch.flexmark</groupId>
|
<groupId>org.slf4j</groupId>
|
||||||
<artifactId>flexmark-all</artifactId>
|
<artifactId>jcl-over-slf4j</artifactId>
|
||||||
<version>0.50.46</version>
|
<version>1.7.26</version>
|
||||||
<exclusions>
|
|
||||||
<exclusion>
|
|
||||||
<groupId>com.vladsch.flexmark</groupId>
|
|
||||||
<artifactId>flexmark-pdf-converter</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
</exclusions>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.auth0</groupId>
|
<groupId>com.alibaba</groupId>
|
||||||
<artifactId>java-jwt</artifactId>
|
<artifactId>fastjson</artifactId>
|
||||||
<version>3.4.0</version>
|
<version>1.2.68.noneautotype</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.google.guava</groupId>
|
||||||
|
<artifactId>guava</artifactId>
|
||||||
|
<version>20.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- test -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.security.extensions</groupId>
|
<groupId>org.mockito</groupId>
|
||||||
<artifactId>spring-security-saml2-core</artifactId>
|
<artifactId>mockito-all</artifactId>
|
||||||
<version>1.0.10.RELEASE</version>
|
<version>${mockito-all.version}</version>
|
||||||
<exclusions>
|
<scope>test</scope>
|
||||||
<exclusion>
|
|
||||||
<groupId>commons-collections</groupId>
|
|
||||||
<artifactId>commons-collections</artifactId>
|
|
||||||
</exclusion>
|
|
||||||
</exclusions>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
<dependency>
|
|
||||||
<groupId>com.squareup.okhttp3</groupId>
|
|
||||||
<artifactId>okhttp</artifactId>
|
|
||||||
<version>3.12.12</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- not exists -->
|
<!-- not exists -->
|
||||||
|
Loading…
Reference in New Issue
Block a user