Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
ejercicio2-framework-back
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Josue
ejercicio2-framework-back
Commits
5328cb69
Commit
5328cb69
authored
Sep 15, 2020
by
Sebastian Chicoma
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Corrigiendo conflictos en el pom.xml
parent
11d78c73
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
385 additions
and
278 deletions
+385
-278
pom.xml
pom.xml
+385
-278
No files found.
pom.xml
View file @
5328cb69
...
...
@@ -16,6 +16,13 @@
<properties>
<xdf.version>
3.1.0
</xdf.version>
<camel.version>
2.22.0
</camel.version>
<mainclass>
com.bytesw.bytebot.BytebotApplication
</mainclass>
<jacoco.version>
0.8.5
</jacoco.version>
<sonar.java.coveragePlugin>
jacoco
</sonar.java.coveragePlugin>
<sonar.dynamicAnalysis>
reuseReports
</sonar.dynamicAnalysis>
<sonar.jacoco.reportPath>
${project.basedir}/../target/jacoco.exec
</sonar.jacoco.reportPath>
<sonar.language>
java
</sonar.language>
<docker.image.prefix>
bytesw
</docker.image.prefix>
<docker.image.name>
bytebot-service
</docker.image.name>
...
...
@@ -126,9 +133,12 @@
<artifactId>
mysql-connector-java
</artifactId>
</dependency>
<!-- camel -->
<dependency>
<groupId>
org.apache.camel
</groupId>
<artifactId>
camel-ftp
</artifactId>
<version>
${camel.version}
</version>
</dependency>
<!-- test -->
<dependency>
...
...
@@ -157,6 +167,12 @@
<version>
1.4.2
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.springframework.security
</groupId>
<artifactId>
spring-security-test
</artifactId>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
org.apache.poi
</groupId>
<artifactId>
poi-ooxml
</artifactId>
...
...
@@ -196,6 +212,97 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>
maven-dependency-plugin
</artifactId>
<executions>
<execution>
<phase>
install
</phase>
<goals>
<goal>
copy-dependencies
</goal>
</goals>
<configuration>
<outputDirectory>
${project.build.directory}/lib
</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
<version>
1.2.5.RELEASE
</version>
<executions>
<execution>
<goals>
<goal>
repackage
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
cobertura-maven-plugin
</artifactId>
<version>
2.7
</version>
<executions>
<execution>
<id>
cobertura
</id>
<phase>
test
</phase>
<goals>
<goal>
cobertura
</goal>
</goals>
<configuration>
<formats>
<format>
xml
</format>
<format>
html
</format>
</formats>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-surefire-plugin
</artifactId>
<configuration>
<runOrder>
random
</runOrder>
</configuration>
</plugin>
<plugin>
<groupId>
org.jacoco
</groupId>
<artifactId>
jacoco-maven-plugin
</artifactId>
<version>
${jacoco.version}
</version>
<configuration>
<skip>
${maven.test.skip}
</skip>
<destFile>
${basedir}/target/coverage-reports/jacoco-unit.exec
</destFile>
<dataFile>
${basedir}/target/coverage-reports/jacoco-unit.exec
</dataFile>
<output>
file
</output>
<append>
true
</append>
<excludes>
<exclude>
*MethodAccess
</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>
jacoco-initialize
</id>
<goals>
<goal>
prepare-agent
</goal>
</goals>
<phase>
test-compile
</phase>
</execution>
<execution>
<id>
jacoco-site
</id>
<phase>
verify
</phase>
<goals>
<goal>
report
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>
default
</id>
...
...
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