-
Notifications
You must be signed in to change notification settings - Fork 50
/
pom.xml
91 lines (80 loc) · 3.21 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>at.favre.lib</groupId>
<artifactId>common-parent</artifactId>
<version>20</version>
</parent>
<artifactId>bcrypt-parent</artifactId>
<packaging>pom</packaging>
<version>0.10.2</version>
<url>https://favr.dev/opensource/bcrypt</url>
<inceptionYear>2018</inceptionYear>
<name>bcrypt-parent</name>
<description>Parent Maven project for Bcrypt</description>
<!-- this is a workaround to be able to only deploy the main module used in deploy phase, nexus stage plugin is buggy -->
<profiles>
<profile>
<id>allmodules</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>modules/bcrypt</module>
<module>modules/bcrypt-cli</module>
<module>modules/benchmark-jmh</module>
</modules>
</profile>
<profile>
<id>mainmodule</id>
<modules>
<module>modules/bcrypt</module>
</modules>
</profile>
</profiles>
<properties>
<!-- SonarQube Config -->
<sonar.organization>patrickfav</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<sonar.coverage.jacoco.xmlReportPaths>**/target/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
<sonar.language>java</sonar.language>
<project.jbcryptVersion>0.4</project.jbcryptVersion>
<project.bcVersion>1.70</project.bcVersion>
<!-- set this to true if fail because of missing credentials -->
<commonConfig.jarSign.skip>true</commonConfig.jarSign.skip>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<scm>
<connection>scm:git:https://github.com/patrickfav/bcrypt.git</connection>
<developerConnection>scm:git:https://github.com/patrickfav/bcrypt.git</developerConnection>
<url>https://github.com/patrickfav/bcrypt</url>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/patrickfav/bcrypt/issues</url>
</issueManagement>
<ciManagement>
<system>Github Actions</system>
<url>https://github.com/patrickfav/bcrypt/actions</url>
</ciManagement>
</project>