Quellcode durchsuchen

2.6.28-SNAPSHOT

knightliao vor 9 Jahren
Ursprung
Commit
e2b6a98621

+ 1 - 2
disconf-client/pom.xml

@@ -10,8 +10,7 @@
     <parent>
         <groupId>com.baidu.disconf</groupId>
         <artifactId>disconf-base</artifactId>
-        <version>2.6.27</version>
-        <relativePath>../</relativePath>
+        <version>2.6.28-SNAPSHOT</version>
     </parent>
 
     <licenses>

+ 1 - 2
disconf-core/pom.xml

@@ -13,8 +13,7 @@
     <parent>
         <groupId>com.baidu.disconf</groupId>
         <artifactId>disconf-base</artifactId>
-        <relativePath>../</relativePath>
-        <version>2.6.27</version>
+        <version>2.6.28-SNAPSHOT</version>
     </parent>
 
     <licenses>

+ 3 - 2
disconf-demos/disconf-spring-boot-demo/disconf-spring-boot-core/pom.xml

@@ -2,6 +2,7 @@
 <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">
+
     <parent>
         <artifactId>disconf-spring-boot-demo</artifactId>
         <groupId>com.baidu.disconf</groupId>
@@ -32,7 +33,7 @@
         <dependency>
             <groupId>com.baidu.disconf</groupId>
             <artifactId>disconf-client</artifactId>
-            <version>2.6.27</version>
+            <version>2.6.28-SNAPSHOT</version>
             <exclusions>
                 <exclusion>
                     <groupId>ch.qos.logback</groupId>
@@ -46,7 +47,7 @@
         </dependency>
 
     </dependencies>
-    
+
     <build>
         <plugins>
             <plugin>

+ 2 - 0
disconf-demos/disconf-spring-boot-demo/disconf-spring-boot-web/pom.xml

@@ -2,11 +2,13 @@
 <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">
+
     <parent>
         <artifactId>disconf-spring-boot-demo</artifactId>
         <groupId>com.baidu.disconf</groupId>
         <version>1.0.0</version>
     </parent>
+
     <modelVersion>4.0.0</modelVersion>
     <packaging>war</packaging>
     <artifactId>disconf-spring-boot-web</artifactId>

+ 1 - 1
disconf-demos/disconf-standalone-demo/pom.xml

@@ -11,7 +11,7 @@
         <dependency>
             <groupId>com.baidu.disconf</groupId>
             <artifactId>disconf-client</artifactId>
-            <version>2.6.27</version>
+            <version>2.6.28-SNAPSHOT</version>
         </dependency>
 
         <dependency>

+ 1 - 1
disconf-demos/disconf-standalone-dubbo-demo/pom.xml

@@ -11,7 +11,7 @@
         <dependency>
             <groupId>com.baidu.disconf</groupId>
             <artifactId>disconf-client</artifactId>
-            <version>2.6.27</version>
+            <version>2.6.28-SNAPSHOT</version>
         </dependency>
 
         <dependency>

+ 2 - 1
disconf-tool/pom.xml

@@ -4,8 +4,9 @@
     <parent>
         <groupId>com.baidu.disconf</groupId>
         <artifactId>disconf-base</artifactId>
-        <version>2.6.27</version>
+        <version>2.6.28-SNAPSHOT</version>
     </parent>
+    
     <artifactId>disconf-tool</artifactId>
     <version>${disconf-tool.version}</version>
     <name>disconf-tools</name>

+ 1 - 2
disconf-web/pom.xml

@@ -12,8 +12,7 @@
     <parent>
         <groupId>com.baidu.disconf</groupId>
         <artifactId>disconf-base</artifactId>
-        <version>2.6.27</version>
-        <relativePath>../</relativePath>
+        <version>2.6.28-SNAPSHOT</version>
     </parent>
 
     <dependencies>

+ 6 - 5
pom.xml

@@ -5,7 +5,7 @@
 
     <groupId>com.baidu.disconf</groupId>
     <artifactId>disconf-base</artifactId>
-    <version>2.6.27</version>
+    <version>2.6.28-SNAPSHOT</version>
     <packaging>pom</packaging>
 
     <modules>
@@ -25,6 +25,11 @@
     </licenses>
 
     <properties>
+        <!-- 模块版本号 -->
+        <disconf-core.version>2.6.28-SNAPSHOT</disconf-core.version>
+        <disconf-client.version>2.6.28-SNAPSHOT</disconf-client.version>
+        <disconf-tool.version>2.6.28-SNAPSHOT</disconf-tool.version>
+
         <!-- Spring項目配置 -->
         <encoding>UTF-8</encoding>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -45,10 +50,6 @@
         <project.build.online.sourceDir>${project.basedir}/src/main/online-resources</project.build.online.sourceDir>
         <project.build.offline.sourceDir>${project.basedir}/src/main/resources</project.build.offline.sourceDir>
 
-        <!-- 模块版本号 -->
-        <disconf-core.version>2.6.27</disconf-core.version>
-        <disconf-client.version>2.6.27</disconf-client.version>
-        <disconf-tool.version>2.6.27</disconf-tool.version>
     </properties>
 
     <dependencyManagement>