forked from github/dataease
add flatten
This commit is contained in:
parent
c724eb2cab
commit
5efe8c0d55
3
.gitignore
vendored
3
.gitignore
vendored
@ -55,4 +55,7 @@ pnpm-debug.log*
|
|||||||
.lh
|
.lh
|
||||||
|
|
||||||
|
|
||||||
|
### Spring flatten ###
|
||||||
|
.flattened-pom.xml
|
||||||
|
|
||||||
package-lock.json
|
package-lock.json
|
||||||
|
3
core/.gitignore
vendored
3
core/.gitignore
vendored
@ -55,4 +55,7 @@ pnpm-debug.log*
|
|||||||
.lh
|
.lh
|
||||||
|
|
||||||
|
|
||||||
|
### Spring flatten ###
|
||||||
|
.flattened-pom.xml
|
||||||
|
|
||||||
package-lock.json
|
package-lock.json
|
||||||
|
2
extensions/.gitignore
vendored
2
extensions/.gitignore
vendored
@ -54,5 +54,7 @@ pnpm-debug.log*
|
|||||||
.settings/
|
.settings/
|
||||||
.lh
|
.lh
|
||||||
|
|
||||||
|
### Spring flatten ###
|
||||||
|
.flattened-pom.xml
|
||||||
|
|
||||||
package-lock.json
|
package-lock.json
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>io.dataease</groupId>
|
|
||||||
<artifactId>dataease-extensions</artifactId>
|
<artifactId>dataease-extensions</artifactId>
|
||||||
<version>${dataease.version}</version>
|
<version>${dataease.version}</version>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
30
pom.xml
30
pom.xml
@ -27,6 +27,36 @@
|
|||||||
<relativePath/>
|
<relativePath/>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>flatten-maven-plugin</artifactId>
|
||||||
|
<version>1.3.0</version>
|
||||||
|
<configuration>
|
||||||
|
<updatePomFile>true</updatePomFile>
|
||||||
|
<flattenMode>resolveCiFriendliesOnly</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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
3
sdk/.gitignore
vendored
3
sdk/.gitignore
vendored
@ -54,5 +54,8 @@ pnpm-debug.log*
|
|||||||
.lh
|
.lh
|
||||||
.factorypath
|
.factorypath
|
||||||
|
|
||||||
|
### Spring flatten ###
|
||||||
|
.flattened-pom.xml
|
||||||
|
|
||||||
package-lock.json
|
package-lock.json
|
||||||
*.versionsBackup
|
*.versionsBackup
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>io.dataease</groupId>
|
|
||||||
<artifactId>dataease-extension-sdk</artifactId>
|
<artifactId>dataease-extension-sdk</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>${dataease.version}</version>
|
<version>${dataease.version}</version>
|
||||||
|
Loading…
Reference in New Issue
Block a user