diff options
| author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2017-10-09 15:23:33 +0200 | 
|---|---|---|
| committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2017-10-09 15:23:33 +0200 | 
| commit | a59e9d088954345d67ff6b5b9b0f4d88d56531be (patch) | |
| tree | 1e5398106a1ba7f84a6361d657490b1011f31119 /id | |
| parent | e9523fa25a76887419a268668013a2438cb51212 (diff) | |
| download | moa-id-spss-a59e9d088954345d67ff6b5b9b0f4d88d56531be.tar.gz moa-id-spss-a59e9d088954345d67ff6b5b9b0f4d88d56531be.tar.bz2 moa-id-spss-a59e9d088954345d67ff6b5b9b0f4d88d56531be.zip | |
update version in moa-id-auth mainpage
Diffstat (limited to 'id')
| -rw-r--r-- | id/server/moa-id-frontend-resources/pom.xml | 72 | ||||
| -rw-r--r-- | id/server/moa-id-frontend-resources/src/main/resources/mainGUI/index.html | 2 | 
2 files changed, 73 insertions, 1 deletions
| diff --git a/id/server/moa-id-frontend-resources/pom.xml b/id/server/moa-id-frontend-resources/pom.xml index 64ebc14b6..7ad2c89a1 100644 --- a/id/server/moa-id-frontend-resources/pom.xml +++ b/id/server/moa-id-frontend-resources/pom.xml @@ -29,6 +29,78 @@  		<repositoryPath>${basedir}/../../../../repository</repositoryPath>  	</properties> +  <build> +  	<plugins> +  	<plugin> +    	<groupId>org.codehaus.mojo</groupId> +    	<artifactId>groovy-maven-plugin</artifactId> +    	<version>1.5</version> +    <executions> +      <execution> +        <phase>generate-resources</phase> +        <goals> +          <goal>execute</goal> +        </goals> +        <configuration> +          <source> +        	<![CDATA[ +        	println("==== Creating version.txt ===="); +        	File mainDir = new File("src/main/resources"); +        	if(mainDir.exists() && !mainDir.isDirectory()) { +            println("Main dir does not exist, wont create version.txt!"); +            return; +        	} +        	File confDir = new File("src/main/resources/mainGUI"); +        	if(confDir.exists() && !confDir.isDirectory()) { +            println("Conf dir is not a directory, wont create version.txt!"); +            return; +        	} +        	if(!confDir.exists()) { +            confDir.mkdir(); +        	} +        	File versionFile = new File("src/main/resources/mainGUI/version.txt"); +        	if(versionFile.exists() && versionFile.isDirectory()) { +            println("Version file exists and is directory! Wont overwrite"); +            return; +        	} +        	if(versionFile.exists() && !versionFile.isDirectory()) { +          	 println("Version file already exists, overwriting!"); +        	} +        	println("Creating Version File"); +        	BufferedWriter writer = new BufferedWriter(new FileWriter(versionFile)); + +        	writer.write("groupId = ${project.groupId}"); +        	writer.newLine(); +        	writer.write("version = ${project.version}"); +        	writer.newLine(); +        	writer.write("timestamp = ${maven.build.timestamp}"); + +        	String buildTag = ""; +        	String buildNumber = ""; +        	String buildId = ""; +        	try { +            	buildTag = "${BUILD_TAG}"; +            	buildNumber = "${BUILD_NUMBER}"; +            	buildId = "${BUILD_ID}"; + +            	writer.write("BUILD_TAG = " + buildTag + "\n"); +            	writer.write("BUILD_NUMBER = " + buildNumber + "\n"); +            	writer.write("BUILD_ID = " + buildId + "\n"); + +        		} catch (Exception e) { +            		println("============= Could not find BUILD_TAG probably this is not a Jenkins/Hudson build ==========="); +        		} + +        		writer.close(); +        		]]> +          		</source> +        		</configuration> +      		</execution> +    		</executions> +  		</plugin> +  	</plugins> +  </build> +      <dependencies>  	     	 <dependency>    		<groupId>MOA.id.server</groupId> diff --git a/id/server/moa-id-frontend-resources/src/main/resources/mainGUI/index.html b/id/server/moa-id-frontend-resources/src/main/resources/mainGUI/index.html index 5f7e92321..7fc2b0298 100644 --- a/id/server/moa-id-frontend-resources/src/main/resources/mainGUI/index.html +++ b/id/server/moa-id-frontend-resources/src/main/resources/mainGUI/index.html @@ -2,7 +2,7 @@  <html>      <head>          <meta http-equiv="content-type" content="text/html; charset=utf8" > -        <title>MOA-ID 3.2.x</title> +        <title>MOA-ID 3.3.x</title>          <link rel="stylesheet" href="./common/main.css" type="text/css">          <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">          <link href='https://fonts.googleapis.com/css?family=Roboto:300,400' rel='stylesheet' type='text/css'> | 
