Skip to content

Commit 6d1bfea

Browse files
publish version by ci
1 parent e54c453 commit 6d1bfea

2 files changed

Lines changed: 87 additions & 0 deletions

File tree

encrypt-tool/.lastRelease

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
e58aae908364f799c0647d78b6012d45
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.netease.lowcode.extensions</groupId>
5+
<artifactId>encrypt-tool</artifactId>
6+
<name>加密解密模块</name>
7+
<version>1.0.29</version>
8+
<description>加密解密模块</description>
9+
<build>
10+
<plugins>
11+
<plugin>
12+
<artifactId>maven-shade-plugin</artifactId>
13+
<version>3.2.2</version>
14+
<executions>
15+
<execution>
16+
<phase>package</phase>
17+
<goals>
18+
<goal>shade</goal>
19+
</goals>
20+
</execution>
21+
</executions>
22+
<configuration>
23+
<filters>
24+
<filter>
25+
<artifact>*:*</artifact>
26+
<excludes>
27+
<exclude>META-INF/*.SF</exclude>
28+
<exclude>META-INF/*.DSA</exclude>
29+
<exclude>META-INF/*.RSA</exclude>
30+
</excludes>
31+
</filter>
32+
</filters>
33+
<relocations>
34+
<relocation>
35+
<pattern>org.bouncycastle</pattern>
36+
<shadedPattern>shade.encrypt.tool.org.bouncycastle</shadedPattern>
37+
</relocation>
38+
<relocation>
39+
<pattern>cn.hutool</pattern>
40+
<shadedPattern>shade.cn.hutool</shadedPattern>
41+
</relocation>
42+
</relocations>
43+
</configuration>
44+
</plugin>
45+
<plugin>
46+
<groupId>com.netease.lowcode</groupId>
47+
<artifactId>nasl-metadata-maven-plugin</artifactId>
48+
<version>1.3.0</version>
49+
<executions>
50+
<execution>
51+
<goals>
52+
<goal>archive</goal>
53+
</goals>
54+
</execution>
55+
</executions>
56+
</plugin>
57+
</plugins>
58+
</build>
59+
<dependencies>
60+
<dependency>
61+
<groupId>org.junit.jupiter</groupId>
62+
<artifactId>junit-jupiter-api</artifactId>
63+
<version>5.10.1</version>
64+
<scope>test</scope>
65+
<exclusions>
66+
<exclusion>
67+
<artifactId>opentest4j</artifactId>
68+
<groupId>org.opentest4j</groupId>
69+
</exclusion>
70+
<exclusion>
71+
<artifactId>junit-platform-commons</artifactId>
72+
<groupId>org.junit.platform</groupId>
73+
</exclusion>
74+
<exclusion>
75+
<artifactId>apiguardian-api</artifactId>
76+
<groupId>org.apiguardian</groupId>
77+
</exclusion>
78+
</exclusions>
79+
</dependency>
80+
</dependencies>
81+
<properties>
82+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
83+
<maven.compiler.source>8</maven.compiler.source>
84+
<maven.compiler.target>8</maven.compiler.target>
85+
</properties>
86+
</project>

0 commit comments

Comments
 (0)