Skip to content

Latest commit

 

History

History

vagrant-java-1

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Installation of vagrant

Initialization

git clone https://github.com/theotheu/vagrant-java.git

cd vagrant-java

vagrant up

Connecting

vagrant ssh

Destroying

vagrant destroy

Installation of ojdbc6.jar (optional)

Search at google for actual location of ojdbc6.jar at https://www.google.nl/search?q=ojdbc6.jar+download

You might have to login with yout OTN account.

Accept the license agreement and download the file.

Install the plugin with mvn install:install-file -Dfile=./ojdbc6.jar -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0.4 -Dpackaging=jar

Modify your POM to accomodate the version ` <project ...>

<dependencies>>

	<!-- ORACLE database driver -->
	<dependency>
		<groupId>com.oracle</groupId>
		<artifactId>ojdbc6</artifactId>
		<version>11.2.0.4</version>
	</dependency>

</dependencies>
`

Installation of quartz (optional)

clone repo

mvn install:install-file -DgroupId=quartz -DartifactId=quartz -Dversion=1.6.0 -Dpackaging=jar -DpomFile=./quartz-1.6.0.pom -Dfile=./quartz-1.6.0.jar