Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Commit

Permalink
Use semver for versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
cnorthwood committed Feb 21, 2016
1 parent fbc7a23 commit d0a9f47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Vagrant.configure(2) do |config|
config.vm.network 'forwarded_port', guest: 7443, host: 7443

config.vm.provision 'shell', inline: 'apt-get install apache2'
config.vm.provision 'shell', inline: 'test -L /var/lib/go-server/plugins/external/gocd-tls-auth-1.0.jar || ln -s /vagrant/target/gocd-tls-auth-1.0.jar /var/lib/go-server/plugins/external/'
config.vm.provision 'shell', inline: 'test -L /var/lib/go-server/plugins/external/gocd-tls-auth-1.0.0.jar || ln -s /vagrant/target/gocd-tls-auth-1.0.0.jar /var/lib/go-server/plugins/external/'
config.vm.provision 'shell', inline: 'test -f /vagrant/apache-config/key.pem || openssl req -x509 -newkey rsa:2048 -keyout /vagrant/apache-config/key.pem -out /vagrant/apache-config/cert.pem -days 30 -nodes -subj "/CN=localhost"'
config.vm.provision 'shell', inline: 'test -L /etc/apache2/sites-enabled/gocd.conf || ln -s /vagrant/apache-config/httpd.conf /etc/apache2/sites-enabled/gocd.conf'
config.vm.provision 'shell', inline: 'a2enmod proxy proxy_http ssl headers'
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>uk.me.cjn.gocd</groupId>
<artifactId>gocd-tls-auth</artifactId>
<version>1.0</version>
<version>1.0.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit d0a9f47

Please sign in to comment.