mirror of
				https://github.com/Telecominfraproject/wlan-cloud-workspace.git
				synced 2025-10-31 18:58:04 +00:00 
			
		
		
		
	Compare commits
	
		
			71 Commits
		
	
	
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|   | ccd99b96e0 | ||
|   | 21d8ad82a6 | ||
|   | b78ba6b9f8 | ||
|   | 3ee088bd94 | ||
|   | aa36f6ac86 | ||
|   | cbb811587f | ||
|   | baf67c8b6e | ||
|   | 49d85641d9 | ||
|   | 0ce42d6fa2 | ||
|   | 1ae5911d28 | ||
|   | a21f8157e0 | ||
|   | f59dfe4ae1 | ||
|   | 6b9dc5927b | ||
|   | 05bede7c95 | ||
|   | d6bb878b04 | ||
|   | aefbee5f25 | ||
|   | 09c975a35c | ||
|   | d295fccf24 | ||
|   | 382fac0e7c | ||
|   | fc2523f09f | ||
|   | 230fb9f825 | ||
|   | 02827cd29d | ||
|   | 8de25f9b2e | ||
|   | 1acd399ba3 | ||
|   | 4b8ee0103b | ||
|   | 857927621c | ||
|   | f1321bd0ac | ||
|   | 50c9d40f55 | ||
|   | 6ad82d527e | ||
|   | 2349ce57da | ||
|   | 40e342ac57 | ||
|   | 33cac70b7e | ||
|   | 7e99a282cd | ||
|   | fe7cb6edeb | ||
|   | cf87fb592f | ||
|   | 77a2389dac | ||
|   | 7245c62351 | ||
|   | 090463bb52 | ||
|   | c2d3e5fd3d | ||
|   | 183eadfc0a | ||
|   | 8074cd8eec | ||
|   | 1f3c7cdb4c | ||
|   | 3cb7ffeb7d | ||
|   | 5f6f8254fe | ||
|   | 4600c7ea39 | ||
|   | f1980285fd | ||
|   | c02e36a11a | ||
|   | 145cf47130 | ||
|   | 522dfa5978 | ||
|   | fc34d6bb26 | ||
|   | b097facb79 | ||
|   | 5e5bbf8a43 | ||
|   | d461ba15e6 | ||
|   | 6b128230d7 | ||
|   | 9a872cbdfc | ||
|   | ebae3b537a | ||
|   | dad7486ce7 | ||
|   | 1d5bd3e3d8 | ||
|   | 61602bc5cd | ||
|   | 0761196671 | ||
|   | 1f93d2ef6d | ||
|   | 0bb6668e5e | ||
|   | 4ab979d1e9 | ||
|   | 3f22aad094 | ||
|   | 1f2736e458 | ||
|   | cd50fe6d42 | ||
|   | c8f7582d7d | ||
|   | a38614d96b | ||
|   | 870ec8b9a9 | ||
|   | 06661dbf42 | ||
|   | ab78022a86 | 
| @@ -1,10 +1,9 @@ | ||||
| <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"> | ||||
| <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>com.telecominfraproject.wlan</groupId> | ||||
| 		<artifactId>tip-wlan-cloud-root-pom</artifactId> | ||||
| 		<version>0.0.1-SNAPSHOT</version> | ||||
| 		<version>1.1.0-SNAPSHOT</version> | ||||
| 		<relativePath>../wlan-cloud-root</relativePath> | ||||
| 	</parent> | ||||
|  | ||||
|   | ||||
							
								
								
									
										25
									
								
								all-modules-release/make_release.sh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										25
									
								
								all-modules-release/make_release.sh
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,25 @@ | ||||
| #!/bin/bash | ||||
|  | ||||
| if [ "x$1" == "x" ] | ||||
| then | ||||
|   echo Usage: make_release.sh new_version | ||||
|   exit 1 | ||||
| fi | ||||
|  | ||||
| new_version=$1 | ||||
|  | ||||
| PREVIOUS_VERSION=$(grep "<version>" ../wlan-cloud-root/pom.xml |head -2|tail -1|cut -d '>' -f2|cut -d '<' -f 1) | ||||
| echo "Updating TIP pom.xml files from $PREVIOUS_VERSION to version $new_version " | ||||
|  | ||||
| # update versions on TIP modules using special all-modules-release | ||||
| mvn  --batch-mode release:update-versions -DdevelopmentVersion="$new_version" -DautoVersionSubmodules=true | ||||
|  | ||||
|  | ||||
| # update version that are not automatically updated | ||||
| sed -i '' "s/<tip-wlan-cloud.release.version>$PREVIOUS_VERSION<\/tip-wlan-cloud.release.version>/<tip-wlan-cloud.release.version>$new_version<\/tip-wlan-cloud.release.version>/g" ../wlan-cloud-root/pom.xml | ||||
|  | ||||
| #update protobuff dependency under opensync-ext-interface | ||||
| sed -i '' "s/<version>$PREVIOUS_VERSION<\/version>/<version>$new_version<\/version>/g" ../wlan-cloud-opensync-controller/opensync-ext-interface/pom.xml | ||||
|  | ||||
| echo "Updated TIP pom.xml files to version $new_version" | ||||
|  | ||||
							
								
								
									
										40
									
								
								all-modules-release/pom.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								all-modules-release/pom.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,40 @@ | ||||
| <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>com.telecominfraproject.wlan</groupId> | ||||
| 			<artifactId>tip-wlan-cloud-root-pom</artifactId> | ||||
| 			<version>1.1.0-SNAPSHOT</version> | ||||
| 			<relativePath>../wlan-cloud-root</relativePath> | ||||
|         </parent> | ||||
|  | ||||
|         <artifactId>tip-wlan-workspace-all-modules-release</artifactId> | ||||
|         <packaging>pom</packaging> | ||||
|         <description>Aggregation of all TIP modules - to release them in one shot.</description> | ||||
|  | ||||
|         <profiles> | ||||
|                 <profile> | ||||
|                         <id>full-build</id> | ||||
|                         <activation> | ||||
|                                 <property> | ||||
|                                         <name>full-build</name> | ||||
|                                 </property> | ||||
|                                 <activeByDefault>true</activeByDefault> | ||||
|                         </activation> | ||||
|                         <modules> | ||||
|                                 <module>../all-modules-build</module> | ||||
|                                 <module>../wlan-cloud-services/all-cloud-and-opensync-gw-in-one-docker</module> | ||||
|                                 <module>../wlan-cloud-services/all-cloud-in-one-docker</module> | ||||
|                                 <module>../wlan-cloud-services/all-cloud-in-one-docker-with-persistence</module> | ||||
|                                 <module>../wlan-cloud-services/port-forwarding-gateway-docker</module> | ||||
|                                 <module>../wlan-cloud-services/portal-docker</module>                                 | ||||
|                                 <module>../wlan-cloud-services/prov-docker</module> | ||||
|                                 <module>../wlan-cloud-services/spc-docker</module> | ||||
|                                 <module>../wlan-cloud-services/ssc-docker</module> | ||||
|                                 <module>../wlan-cloud-opensync-controller/opensync-gateway-cloud-docker</module> | ||||
|                                 <module>../wlan-cloud-opensync-controller/opensync-gateway-static-docker</module> | ||||
|                         </modules> | ||||
|                 </profile> | ||||
|         </profiles> | ||||
| </project> | ||||
|  | ||||
|  | ||||
 Submodule wlan-cloud-base updated: 24149ad62e...b1cc93b9df
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							 Submodule wlan-cloud-opensync-controller updated: a66049a600...9b31e67822
									
								
							 Submodule wlan-cloud-root updated: 88001eb119...069b8886ab
									
								
							 Submodule wlan-cloud-services updated: f0ee2750a7...ae0bd303dd
									
								
							
		Reference in New Issue
	
	Block a user