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
Jan 26, 2020
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
drip-manager/pom.xml
View file @
565ab013
...
...
@@ -36,7 +36,8 @@
<artifactId>
dockerfile-maven-plugin
</artifactId>
<version>
1.4.13
</version>
<configuration>
<repository>
${docker.image.prefix}/${project.artifactId}
</repository>
<!-- <repository>${docker.image.prefix}/${project.artifactId}</repository>-->
<repository>
${project.artifactId}
</repository>
<tag>
${project.version}
</tag>
</configuration>
</plugin>
...
...
@@ -74,11 +75,21 @@
<artifactId>
spring-boot-starter-tomcat
</artifactId>
</dependency>
<!--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>
<groupId>
com.sun.xml.bind
</groupId>
<artifactId>
jaxb-core
</artifactId>
<version>
2.3.0.1
</version>
</dependency>
<dependency>
<groupId>
com.sun.xml.bind
</groupId>
<artifactId>
jaxb-impl
</artifactId>
<version>
2.3.1
</version>
</dependency>
<!--SpringFox dependencies -->
<dependency>
<groupId>
io.springfox
</groupId>
...
...
drip-provisioner/pom.xml
View file @
565ab013
...
...
@@ -107,7 +107,8 @@
<artifactId>
dockerfile-maven-plugin
</artifactId>
<version>
1.4.13
</version>
<configuration>
<repository>
${docker.image.prefix}/${project.artifactId}
</repository>
<!-- <repository>${docker.image.prefix}/${project.artifactId}</repository>-->
<repository>
${project.artifactId}
</repository>
<tag>
${project.version}
</tag>
</configuration>
</plugin>
...
...
package.sh
View file @
565ab013
...
...
@@ -6,7 +6,7 @@ echo "----------Building drip-provisioner Docker--------------"
cd
drip-provisioner
&&
mvn
-Dmaven
.test.skip
=
true
dockerfile:build
cd
../
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--------------"
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
.
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