Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CONF
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UvA
CONF
Commits
565ab013
Commit
565ab013
authored
5 years ago
by
Spiros Koulouzis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added new dependencies for the 'package javax.xml.bind.annotation does not exist' error
parent
51163715
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
4 deletions
+16
-4
docker_push.sh
docker_push.sh
+0
-0
pom.xml
drip-manager/pom.xml
+12
-1
pom.xml
drip-provisioner/pom.xml
+2
-1
package.sh
package.sh
+2
-2
No files found.
docker_push.sh
100644 → 100755
View file @
565ab013
File mode changed from 100644 to 100755
This diff is collapsed.
Click to expand it.
drip-manager/pom.xml
View file @
565ab013
...
@@ -36,7 +36,8 @@
...
@@ -36,7 +36,8 @@
<artifactId>
dockerfile-maven-plugin
</artifactId>
<artifactId>
dockerfile-maven-plugin
</artifactId>
<version>
1.4.13
</version>
<version>
1.4.13
</version>
<configuration>
<configuration>
<repository>
${docker.image.prefix}/${project.artifactId}
</repository>
<!-- <repository>${docker.image.prefix}/${project.artifactId}</repository>-->
<repository>
${project.artifactId}
</repository>
<tag>
${project.version}
</tag>
<tag>
${project.version}
</tag>
</configuration>
</configuration>
</plugin>
</plugin>
...
@@ -74,11 +75,21 @@
...
@@ -74,11 +75,21 @@
<artifactId>
spring-boot-starter-tomcat
</artifactId>
<artifactId>
spring-boot-starter-tomcat
</artifactId>
</dependency>
</dependency>
<!--We need this for java 11. Otherwise we get: javax.xml.bind.annotation does not exist-->
<!--We need this for java 11. Otherwise we get: javax.xml.bind.annotation does not exist-->
<dependency>
<groupId>
javax.xml.bind
</groupId>
<artifactId>
jaxb-api
</artifactId>
<version>
2.3.1
</version>
</dependency>
<dependency>
<dependency>
<groupId>
com.sun.xml.bind
</groupId>
<groupId>
com.sun.xml.bind
</groupId>
<artifactId>
jaxb-core
</artifactId>
<artifactId>
jaxb-core
</artifactId>
<version>
2.3.0.1
</version>
<version>
2.3.0.1
</version>
</dependency>
</dependency>
<dependency>
<groupId>
com.sun.xml.bind
</groupId>
<artifactId>
jaxb-impl
</artifactId>
<version>
2.3.1
</version>
</dependency>
<!--SpringFox dependencies -->
<!--SpringFox dependencies -->
<dependency>
<dependency>
<groupId>
io.springfox
</groupId>
<groupId>
io.springfox
</groupId>
...
...
This diff is collapsed.
Click to expand it.
drip-provisioner/pom.xml
View file @
565ab013
...
@@ -107,7 +107,8 @@
...
@@ -107,7 +107,8 @@
<artifactId>
dockerfile-maven-plugin
</artifactId>
<artifactId>
dockerfile-maven-plugin
</artifactId>
<version>
1.4.13
</version>
<version>
1.4.13
</version>
<configuration>
<configuration>
<repository>
${docker.image.prefix}/${project.artifactId}
</repository>
<!-- <repository>${docker.image.prefix}/${project.artifactId}</repository>-->
<repository>
${project.artifactId}
</repository>
<tag>
${project.version}
</tag>
<tag>
${project.version}
</tag>
</configuration>
</configuration>
</plugin>
</plugin>
...
...
This diff is collapsed.
Click to expand it.
package.sh
View file @
565ab013
...
@@ -6,7 +6,7 @@ echo "----------Building drip-provisioner Docker--------------"
...
@@ -6,7 +6,7 @@ echo "----------Building drip-provisioner Docker--------------"
cd
drip-provisioner
&&
mvn
-Dmaven
.test.skip
=
true
dockerfile:build
cd
drip-provisioner
&&
mvn
-Dmaven
.test.skip
=
true
dockerfile:build
cd
../
cd
../
echo
"----------Building sure_tosca-flask-server Docker--------------"
echo
"----------Building sure_tosca-flask-server Docker--------------"
cd
sure_tosca-flask-server
&&
docker build
-t
deth53/
sure-tosca:3.0.0
.
cd
sure_tosca-flask-server
&&
docker build
-t
sure-tosca:3.0.0
.
echo
"----------Building drip-planner Docker--------------"
echo
"----------Building drip-planner Docker--------------"
cd
../
cd
../
cd
drip-planner
&&
docker build
-t
d
eth53/d
rip-planner:3.0.0
.
cd
drip-planner
&&
docker build
-t
drip-planner:3.0.0
.
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment