build(global): Upgrade to 1.1.0-alpha
This commit is contained in:
+1
-1
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>cn.org.codecrafters</groupId>
|
||||
<artifactId>jdevkit</artifactId>
|
||||
<version>1.0.2</version>
|
||||
<version>1.1.0-alpha</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>devkit-core</artifactId>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>cn.org.codecrafters</groupId>
|
||||
<artifactId>jdevkit</artifactId>
|
||||
<version>1.0.2</version>
|
||||
<version>1.1.0-alpha</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>devkit-utils</artifactId>
|
||||
|
||||
+1
-1
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>cn.org.codecrafters</groupId>
|
||||
<artifactId>jdevkit</artifactId>
|
||||
<version>1.0.2</version>
|
||||
<version>1.1.0-alpha</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>guid</artifactId>
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
|
||||
<groupId>cn.org.codecrafters</groupId>
|
||||
<artifactId>jdevkit</artifactId>
|
||||
<version>1.0.2</version>
|
||||
<version>1.1.0-alpha</version>
|
||||
<inceptionYear>2023</inceptionYear>
|
||||
|
||||
<packaging>pom</packaging>
|
||||
@@ -42,6 +42,7 @@
|
||||
<module>simple-jwt-authzero</module>
|
||||
<module>simple-jwt-jjwt</module>
|
||||
<module>simple-jwt-spring-boot-starter</module>
|
||||
<module>property-encryptor-spring-boot-starter</module>
|
||||
</modules>
|
||||
|
||||
<organization>
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!--
|
||||
~ Copyright (C) 2023 CodeCraftersCN.
|
||||
~
|
||||
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||
~ you may not use this file except in compliance with the License.
|
||||
~ You may obtain a copy of the License at
|
||||
~
|
||||
~ http://www.apache.org/licenses/LICENSE-2.0
|
||||
~
|
||||
~ Unless required by applicable law or agreed to in writing, software
|
||||
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
~
|
||||
~ See the License for the specific language governing permissions and
|
||||
~ limitations under the License.
|
||||
-->
|
||||
|
||||
<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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>cn.org.codecrafters</groupId>
|
||||
<artifactId>jdevkit</artifactId>
|
||||
<version>1.1.0-alpha</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>property-encryptor-spring-boot-starter</artifactId>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>cn.org.codecrafters</groupId>
|
||||
<artifactId>devkit-utils</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-autoconfigure</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-logging</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-configuration-processor</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>cn.org.codecrafters</groupId>
|
||||
<artifactId>jdevkit</artifactId>
|
||||
<version>1.0.2</version>
|
||||
<version>1.1.0-alpha</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>simple-jwt-authzero</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>cn.org.codecrafters</groupId>
|
||||
<artifactId>jdevkit</artifactId>
|
||||
<version>1.0.2</version>
|
||||
<version>1.1.0-alpha</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>simple-jwt-facade</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>cn.org.codecrafters</groupId>
|
||||
<artifactId>jdevkit</artifactId>
|
||||
<version>1.0.2</version>
|
||||
<version>1.1.0-alpha</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>simple-jwt-jjwt</artifactId>
|
||||
|
||||
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>cn.org.codecrafters</groupId>
|
||||
<artifactId>jdevkit</artifactId>
|
||||
<version>1.0.2</version>
|
||||
<version>1.1.0-alpha</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>simple-jwt-spring-boot-starter</artifactId>
|
||||
|
||||
+1
-1
@@ -23,7 +23,7 @@
|
||||
<parent>
|
||||
<groupId>cn.org.codecrafters</groupId>
|
||||
<artifactId>jdevkit</artifactId>
|
||||
<version>1.0.2</version>
|
||||
<version>1.1.0-alpha</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>webcal</artifactId>
|
||||
|
||||
Reference in New Issue
Block a user