init
This commit is contained in:
@@ -0,0 +1,31 @@
|
|||||||
|
#
|
||||||
|
# https://help.github.com/articles/dealing-with-line-endings/
|
||||||
|
#
|
||||||
|
# These are explicitly windows files and should use crlf
|
||||||
|
*.bat text eol=crlf
|
||||||
|
* text eol=lf
|
||||||
|
*.java text eol=lf
|
||||||
|
*.js text eol=lf
|
||||||
|
*.css text eol=lf
|
||||||
|
*.html text eol=lf
|
||||||
|
|
||||||
|
*.docx binary
|
||||||
|
*.xlsx binary
|
||||||
|
*.pptx binary
|
||||||
|
*.doc binary
|
||||||
|
*.xls binary
|
||||||
|
*.ppt binary
|
||||||
|
*.png binary
|
||||||
|
*.jpg binary
|
||||||
|
*.jar binary
|
||||||
|
*.pdf binary
|
||||||
|
*.eot binary
|
||||||
|
*.ttf binary
|
||||||
|
*.woff binary
|
||||||
|
*.woff2 binary
|
||||||
|
*.gzip binary
|
||||||
|
*.zip binary
|
||||||
|
*.gz binary
|
||||||
|
*.ai binary
|
||||||
|
*.eps binary
|
||||||
|
*.swf binary
|
||||||
+99
@@ -0,0 +1,99 @@
|
|||||||
|
bin/
|
||||||
|
.gradle
|
||||||
|
build/
|
||||||
|
!gradle/wrapper/gradle-wrapper.jar
|
||||||
|
!**/src/main/**/build/
|
||||||
|
!**/src/test/**/build/
|
||||||
|
/src/main/generated
|
||||||
|
/log
|
||||||
|
/target
|
||||||
|
|
||||||
|
/_src/
|
||||||
|
/_script/
|
||||||
|
|
||||||
|
### STS ###
|
||||||
|
.apt_generated
|
||||||
|
.classpath
|
||||||
|
.factorypath
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
.springBeans
|
||||||
|
.sts4-cache
|
||||||
|
|
||||||
|
### IntelliJ IDEA ###
|
||||||
|
.idea
|
||||||
|
*.iws
|
||||||
|
*.iml
|
||||||
|
*.ipr
|
||||||
|
out/
|
||||||
|
!**/src/main/**/out/
|
||||||
|
!**/src/test/**/out/
|
||||||
|
|
||||||
|
### NetBeans ###
|
||||||
|
/nbproject/private/
|
||||||
|
/nbbuild/
|
||||||
|
/dist/
|
||||||
|
/nbdist/
|
||||||
|
/.nb-gradle/
|
||||||
|
|
||||||
|
### VS Code ###
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
/Log
|
||||||
|
logs/
|
||||||
|
src/main/generated
|
||||||
|
|
||||||
|
.DS_Store
|
||||||
|
node_modules
|
||||||
|
/dist
|
||||||
|
/resources
|
||||||
|
/components
|
||||||
|
|
||||||
|
# misc
|
||||||
|
/.sass-cache
|
||||||
|
/connect.lock
|
||||||
|
/coverage
|
||||||
|
/libpeerconnection.log
|
||||||
|
npm-debug.log
|
||||||
|
testem.log
|
||||||
|
/typings
|
||||||
|
|
||||||
|
# local env files
|
||||||
|
.env.local
|
||||||
|
.env.*.local
|
||||||
|
|
||||||
|
# Log files
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.idea
|
||||||
|
.vscode
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.sw*
|
||||||
|
*.war
|
||||||
|
portal_deploy.tar
|
||||||
|
|
||||||
|
file_upload/
|
||||||
|
|
||||||
|
# Ignore Gradle build output directory
|
||||||
|
build
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
build_knbank.sh
|
||||||
|
portal.side
|
||||||
|
portal_page.zip
|
||||||
|
requirements.md
|
||||||
|
TODO.txt
|
||||||
|
/apim/
|
||||||
|
/apim-elastic/
|
||||||
|
/jeus_lib/
|
||||||
|
/jeus-tibero/
|
||||||
|
*.zip
|
||||||
|
/src/docs/
|
||||||
|
/docs/
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
FROM openjdk:11-jdk
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY build/libs/*.war /app/app.war
|
||||||
|
|
||||||
|
ENV JAVA_OPTS=""
|
||||||
|
|
||||||
|
ENTRYPOINT java -jar ${JAVA_OPTS} app.war
|
||||||
+154
@@ -0,0 +1,154 @@
|
|||||||
|
plugins {
|
||||||
|
id 'java'
|
||||||
|
id 'war'
|
||||||
|
id 'eclipse'
|
||||||
|
id 'idea'
|
||||||
|
id 'org.springframework.boot' version '2.7.18'
|
||||||
|
id 'io.spring.dependency-management' version '1.1.3'
|
||||||
|
}
|
||||||
|
|
||||||
|
group = 'com.eactive'
|
||||||
|
version = '1.0.0'
|
||||||
|
sourceCompatibility = "1.8"
|
||||||
|
targetCompatibility = "1.8"
|
||||||
|
|
||||||
|
def nexusUrl = "https://nexus.eactive.synology.me:8090"
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url "${nexusUrl}/repository/maven-public/"
|
||||||
|
allowInsecureProtocol = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
annotationProcessor "org.projectlombok:lombok:1.18.28"
|
||||||
|
annotationProcessor "org.projectlombok:lombok-mapstruct-binding:0.2.0", "org.mapstruct:mapstruct-processor:1.5.5.Final"
|
||||||
|
|
||||||
|
implementation 'com.eactive.elink.common:elink-common-data:4.5.5'
|
||||||
|
|
||||||
|
// implementation 'io.swagger.core.v3:swagger-core:2.2.25'
|
||||||
|
// implementation 'io.swagger.parser.v3:swagger-parser:2.1.23'
|
||||||
|
implementation fileTree(dir: 'libs/swagger', include: ['*.jar'])
|
||||||
|
|
||||||
|
implementation project(':elink-online-core-jpa')
|
||||||
|
implementation project(':elink-portal-common')
|
||||||
|
|
||||||
|
implementation('org.springframework.boot:spring-boot-starter')
|
||||||
|
implementation 'org.springframework.boot:spring-boot-starter-jta-atomikos'
|
||||||
|
implementation('org.springframework.boot:spring-boot-starter-web')
|
||||||
|
implementation('org.springframework.boot:spring-boot-starter-validation')
|
||||||
|
implementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.0'
|
||||||
|
implementation group: 'com.fasterxml.woodstox', name: 'woodstox-core', version: '6.5.1'
|
||||||
|
|
||||||
|
|
||||||
|
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
|
||||||
|
implementation 'org.springframework.boot:spring-boot-starter-security'
|
||||||
|
implementation('org.springframework.boot:spring-boot-starter-cache')
|
||||||
|
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||||||
|
implementation 'org.springframework.data:spring-data-envers'
|
||||||
|
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
|
||||||
|
|
||||||
|
runtimeOnly 'org.springframework.boot:spring-boot-devtools'
|
||||||
|
implementation 'org.springframework:spring-expression:5.3.30'
|
||||||
|
|
||||||
|
implementation group: 'xalan', name: 'xalan', version: '2.7.3'
|
||||||
|
|
||||||
|
implementation 'org.hibernate:hibernate-envers:5.6.15.Final'
|
||||||
|
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.0.0'
|
||||||
|
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
|
||||||
|
|
||||||
|
implementation 'com.github.ua-parser:uap-java:1.5.3'
|
||||||
|
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
|
||||||
|
implementation 'com.navercorp.lucy:lucy-xss-servlet:2.0.1'
|
||||||
|
implementation 'javax.servlet:javax.servlet-api:4.0.0'
|
||||||
|
implementation 'org.jasypt:jasypt:1.9.3'
|
||||||
|
implementation 'xerces:xercesImpl:2.12.2'
|
||||||
|
|
||||||
|
implementation 'org.apache.commons:commons-lang3:3.12.0'
|
||||||
|
implementation 'org.apache.commons:commons-collections4:4.4'
|
||||||
|
|
||||||
|
implementation 'commons-net:commons-net:3.9.0'
|
||||||
|
implementation('commons-beanutils:commons-beanutils:1.9.4') {
|
||||||
|
// exclude group: 'commons-collections', module: 'commons-collections'
|
||||||
|
}
|
||||||
|
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
|
||||||
|
implementation 'com.fasterxml.jackson.core:jackson-core:2.15.3'
|
||||||
|
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.15.3'
|
||||||
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.3'
|
||||||
|
|
||||||
|
implementation group: 'org.apache.velocity', name: 'velocity-engine-core', version: '2.3'
|
||||||
|
|
||||||
|
runtimeOnly group: 'com.mysql', name: 'mysql-connector-j', version: '8.4.0'
|
||||||
|
|
||||||
|
implementation 'net.bytebuddy:byte-buddy:1.14.5'
|
||||||
|
|
||||||
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
||||||
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
||||||
|
testImplementation 'org.mockito:mockito-inline:3.11.2'
|
||||||
|
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||||
|
testImplementation 'org.seleniumhq.selenium:selenium-java:4.8.3'
|
||||||
|
testImplementation group: 'io.github.bonigarcia', name: 'webdrivermanager', version: '5.9.1'
|
||||||
|
testImplementation 'org.apache.httpcomponents.client5:httpclient5:5.2.1'
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
ext {
|
||||||
|
springMavenArtifactVersion = '5.3.30'
|
||||||
|
encoding = 'UTF-8'
|
||||||
|
profile = 'local'
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
task printProfile {
|
||||||
|
doLast {
|
||||||
|
if (project.hasProperty('profile')) {
|
||||||
|
println "Current profile: ${project.property('profile')}"
|
||||||
|
} else {
|
||||||
|
println "No profile specified"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bootRun {
|
||||||
|
// 디버깅 사용시에는 아래 내용 주석 해제 하세요
|
||||||
|
// jvmArgs '-Xdebug', '-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005'
|
||||||
|
|
||||||
|
args = ["--spring.profiles.active=dev"]
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
sourceSets {
|
||||||
|
main {
|
||||||
|
java {
|
||||||
|
srcDir 'src/main/java'
|
||||||
|
srcDir 'build/generated/sources/annotationProcessor/java/main'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
configurations {
|
||||||
|
annotationProcessor
|
||||||
|
}
|
||||||
|
|
||||||
|
compileJava {
|
||||||
|
options.annotationProcessorPath = configurations.annotationProcessor
|
||||||
|
options.compilerArgs += ["-parameters"]
|
||||||
|
options.encoding = 'UTF-8'
|
||||||
|
}
|
||||||
|
test {
|
||||||
|
useJUnitPlatform()
|
||||||
|
enabled = true
|
||||||
|
}
|
||||||
|
|
||||||
|
war {
|
||||||
|
|
||||||
|
// Set the name of the WAR file (optional)
|
||||||
|
archiveFileName = "PTLWeb.war"
|
||||||
|
|
||||||
|
from('src/main/resources/jeus-web-dd.xml') {
|
||||||
|
into 'WEB-INF'
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
./gradlew bootWar
|
||||||
|
docker build -t eactive-portal .
|
||||||
|
|
||||||
@@ -0,0 +1,31 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Check if the war file is provided
|
||||||
|
if [ -z "$1" ]; then
|
||||||
|
echo "Usage: $0 /path/to/DEVPortal.war"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Variables
|
||||||
|
WAR_FILE="$1"
|
||||||
|
TIMESTAMP=$(date +%Y%m%d%H%M%S)
|
||||||
|
DEST_DIR="/app/apim/deploy/DVPWeb"
|
||||||
|
BACKUP_DIR="/app/apim/backup"
|
||||||
|
|
||||||
|
# Create backup directory if not exists
|
||||||
|
mkdir -p $BACKUP_DIR
|
||||||
|
|
||||||
|
# Backup the existing directory
|
||||||
|
if [ -d "$DEST_DIR" ]; then
|
||||||
|
echo "Backing up existing directory..."
|
||||||
|
mv $DEST_DIR "${BACKUP_DIR}/dvp_${TIMESTAMP}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Create destination directory if not exists
|
||||||
|
mkdir -p $DEST_DIR
|
||||||
|
|
||||||
|
# Unzip the file to the dedicated location
|
||||||
|
echo "Extracting WAR file to $DEST_DIR..."
|
||||||
|
unzip $WAR_FILE -d $DEST_DIR
|
||||||
|
|
||||||
|
echo "deploy successful"
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Check if the war file is provided
|
||||||
|
if [ -z "$1" ]; then
|
||||||
|
echo "Usage: $0 /path/to/DEVPortal.war"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Variables
|
||||||
|
WAR_FILE="$1"
|
||||||
|
TIMESTAMP=$(date +%Y%m%d%H%M%S)
|
||||||
|
DEST_DIR="/app/apim/deploy/DVPWeb"
|
||||||
|
STATIC_DIR="/app/apim/deploy/static"
|
||||||
|
BACKUP_DIR="/app/apim/backup"
|
||||||
|
|
||||||
|
# Create backup directory if not exists
|
||||||
|
mkdir -p $BACKUP_DIR
|
||||||
|
|
||||||
|
# Backup the existing directory
|
||||||
|
if [ -d "$STATIC_DIR" ]; then
|
||||||
|
echo "Backing up existing static directory..."
|
||||||
|
mv $STATIC_DIR "${BACKUP_DIR}/dvp_static_${TIMESTAMP}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -d "$DEST_DIR" ]; then
|
||||||
|
echo "Backing up existing directory..."
|
||||||
|
mv $DEST_DIR "${BACKUP_DIR}/dvp_${TIMESTAMP}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Create destination directory if not exists
|
||||||
|
mkdir -p $DEST_DIR
|
||||||
|
mkdir -p $STATIC_DIR
|
||||||
|
|
||||||
|
# unzip the file to the dedicated location
|
||||||
|
echo "Extracting WAR file to $DEST_DIR..."
|
||||||
|
unzip $WAR_FILE -d $DEST_DIR
|
||||||
|
mv $DEST_DIR/static/* $STATIC_DIR/
|
||||||
|
|
||||||
|
echo "deploy successful"
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
org.gradle.caching=true
|
||||||
|
org.gradle.offline=true
|
||||||
Vendored
BIN
Binary file not shown.
+6
@@ -0,0 +1,6 @@
|
|||||||
|
distributionBase=GRADLE_USER_HOME
|
||||||
|
distributionPath=wrapper/dists
|
||||||
|
distributionUrl=gradle-7.6.3-bin.zip
|
||||||
|
networkTimeout=10000
|
||||||
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
zipStorePath=wrapper/dists
|
||||||
@@ -0,0 +1,244 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
#
|
||||||
|
# Copyright © 2015-2021 the original authors.
|
||||||
|
#
|
||||||
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
# you may not use this file except in compliance with the License.
|
||||||
|
# You may obtain a copy of the License at
|
||||||
|
#
|
||||||
|
# https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
#
|
||||||
|
# Unless required by applicable law or agreed to in writing, software
|
||||||
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
# See the License for the specific language governing permissions and
|
||||||
|
# limitations under the License.
|
||||||
|
#
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
#
|
||||||
|
# Gradle start up script for POSIX generated by Gradle.
|
||||||
|
#
|
||||||
|
# Important for running:
|
||||||
|
#
|
||||||
|
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
|
||||||
|
# noncompliant, but you have some other compliant shell such as ksh or
|
||||||
|
# bash, then to run this script, type that shell name before the whole
|
||||||
|
# command line, like:
|
||||||
|
#
|
||||||
|
# ksh Gradle
|
||||||
|
#
|
||||||
|
# Busybox and similar reduced shells will NOT work, because this script
|
||||||
|
# requires all of these POSIX shell features:
|
||||||
|
# * functions;
|
||||||
|
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
|
||||||
|
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
|
||||||
|
# * compound commands having a testable exit status, especially «case»;
|
||||||
|
# * various built-in commands including «command», «set», and «ulimit».
|
||||||
|
#
|
||||||
|
# Important for patching:
|
||||||
|
#
|
||||||
|
# (2) This script targets any POSIX shell, so it avoids extensions provided
|
||||||
|
# by Bash, Ksh, etc; in particular arrays are avoided.
|
||||||
|
#
|
||||||
|
# The "traditional" practice of packing multiple parameters into a
|
||||||
|
# space-separated string is a well documented source of bugs and security
|
||||||
|
# problems, so this is (mostly) avoided, by progressively accumulating
|
||||||
|
# options in "$@", and eventually passing that to Java.
|
||||||
|
#
|
||||||
|
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
|
||||||
|
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
|
||||||
|
# see the in-line comments for details.
|
||||||
|
#
|
||||||
|
# There are tweaks for specific operating systems such as AIX, CygWin,
|
||||||
|
# Darwin, MinGW, and NonStop.
|
||||||
|
#
|
||||||
|
# (3) This script is generated from the Groovy template
|
||||||
|
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
|
||||||
|
# within the Gradle project.
|
||||||
|
#
|
||||||
|
# You can find Gradle at https://github.com/gradle/gradle/.
|
||||||
|
#
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
# Attempt to set APP_HOME
|
||||||
|
|
||||||
|
# Resolve links: $0 may be a link
|
||||||
|
app_path=$0
|
||||||
|
|
||||||
|
# Need this for daisy-chained symlinks.
|
||||||
|
while
|
||||||
|
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
|
||||||
|
[ -h "$app_path" ]
|
||||||
|
do
|
||||||
|
ls=$( ls -ld "$app_path" )
|
||||||
|
link=${ls#*' -> '}
|
||||||
|
case $link in #(
|
||||||
|
/*) app_path=$link ;; #(
|
||||||
|
*) app_path=$APP_HOME$link ;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
# This is normally unused
|
||||||
|
# shellcheck disable=SC2034
|
||||||
|
APP_BASE_NAME=${0##*/}
|
||||||
|
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
||||||
|
|
||||||
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
|
||||||
|
|
||||||
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
|
MAX_FD=maximum
|
||||||
|
|
||||||
|
warn () {
|
||||||
|
echo "$*"
|
||||||
|
} >&2
|
||||||
|
|
||||||
|
die () {
|
||||||
|
echo
|
||||||
|
echo "$*"
|
||||||
|
echo
|
||||||
|
exit 1
|
||||||
|
} >&2
|
||||||
|
|
||||||
|
# OS specific support (must be 'true' or 'false').
|
||||||
|
cygwin=false
|
||||||
|
msys=false
|
||||||
|
darwin=false
|
||||||
|
nonstop=false
|
||||||
|
case "$( uname )" in #(
|
||||||
|
CYGWIN* ) cygwin=true ;; #(
|
||||||
|
Darwin* ) darwin=true ;; #(
|
||||||
|
MSYS* | MINGW* ) msys=true ;; #(
|
||||||
|
NONSTOP* ) nonstop=true ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||||
|
|
||||||
|
|
||||||
|
# Determine the Java command to use to start the JVM.
|
||||||
|
if [ -n "$JAVA_HOME" ] ; then
|
||||||
|
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||||
|
# IBM's JDK on AIX uses strange locations for the executables
|
||||||
|
JAVACMD=$JAVA_HOME/jre/sh/java
|
||||||
|
else
|
||||||
|
JAVACMD=$JAVA_HOME/bin/java
|
||||||
|
fi
|
||||||
|
if [ ! -x "$JAVACMD" ] ; then
|
||||||
|
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
JAVACMD=java
|
||||||
|
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Increase the maximum file descriptors if we can.
|
||||||
|
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
|
||||||
|
case $MAX_FD in #(
|
||||||
|
max*)
|
||||||
|
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
|
||||||
|
# shellcheck disable=SC3045
|
||||||
|
MAX_FD=$( ulimit -H -n ) ||
|
||||||
|
warn "Could not query maximum file descriptor limit"
|
||||||
|
esac
|
||||||
|
case $MAX_FD in #(
|
||||||
|
'' | soft) :;; #(
|
||||||
|
*)
|
||||||
|
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
|
||||||
|
# shellcheck disable=SC3045
|
||||||
|
ulimit -n "$MAX_FD" ||
|
||||||
|
warn "Could not set maximum file descriptor limit to $MAX_FD"
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Collect all arguments for the java command, stacking in reverse order:
|
||||||
|
# * args from the command line
|
||||||
|
# * the main class name
|
||||||
|
# * -classpath
|
||||||
|
# * -D...appname settings
|
||||||
|
# * --module-path (only if needed)
|
||||||
|
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
|
||||||
|
|
||||||
|
# For Cygwin or MSYS, switch paths to Windows format before running java
|
||||||
|
if "$cygwin" || "$msys" ; then
|
||||||
|
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
|
||||||
|
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
|
||||||
|
|
||||||
|
JAVACMD=$( cygpath --unix "$JAVACMD" )
|
||||||
|
|
||||||
|
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||||
|
for arg do
|
||||||
|
if
|
||||||
|
case $arg in #(
|
||||||
|
-*) false ;; # don't mess with options #(
|
||||||
|
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
|
||||||
|
[ -e "$t" ] ;; #(
|
||||||
|
*) false ;;
|
||||||
|
esac
|
||||||
|
then
|
||||||
|
arg=$( cygpath --path --ignore --mixed "$arg" )
|
||||||
|
fi
|
||||||
|
# Roll the args list around exactly as many times as the number of
|
||||||
|
# args, so each arg winds up back in the position where it started, but
|
||||||
|
# possibly modified.
|
||||||
|
#
|
||||||
|
# NB: a `for` loop captures its iteration list before it begins, so
|
||||||
|
# changing the positional parameters here affects neither the number of
|
||||||
|
# iterations, nor the values presented in `arg`.
|
||||||
|
shift # remove old arg
|
||||||
|
set -- "$@" "$arg" # push replacement arg
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Collect all arguments for the java command;
|
||||||
|
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
|
||||||
|
# shell script including quotes and variable substitutions, so put them in
|
||||||
|
# double quotes to make sure that they get re-expanded; and
|
||||||
|
# * put everything else in single quotes, so that it's not re-expanded.
|
||||||
|
|
||||||
|
set -- \
|
||||||
|
"-Dorg.gradle.appname=$APP_BASE_NAME" \
|
||||||
|
-classpath "$CLASSPATH" \
|
||||||
|
org.gradle.wrapper.GradleWrapperMain \
|
||||||
|
"$@"
|
||||||
|
|
||||||
|
# Stop when "xargs" is not available.
|
||||||
|
if ! command -v xargs >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
die "xargs is not available"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Use "xargs" to parse quoted args.
|
||||||
|
#
|
||||||
|
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
|
||||||
|
#
|
||||||
|
# In Bash we could simply go:
|
||||||
|
#
|
||||||
|
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
|
||||||
|
# set -- "${ARGS[@]}" "$@"
|
||||||
|
#
|
||||||
|
# but POSIX shell has neither arrays nor command substitution, so instead we
|
||||||
|
# post-process each arg (as a line of input to sed) to backslash-escape any
|
||||||
|
# character that might be a shell metacharacter, then use eval to reverse
|
||||||
|
# that process (while maintaining the separation between arguments), and wrap
|
||||||
|
# the whole thing up as a single "set" statement.
|
||||||
|
#
|
||||||
|
# This will of course break if any of these variables contains a newline or
|
||||||
|
# an unmatched quote.
|
||||||
|
#
|
||||||
|
|
||||||
|
eval "set -- $(
|
||||||
|
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
|
||||||
|
xargs -n1 |
|
||||||
|
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
|
||||||
|
tr '\n' ' '
|
||||||
|
)" '"$@"'
|
||||||
|
|
||||||
|
exec "$JAVACMD" "$@"
|
||||||
Vendored
+92
@@ -0,0 +1,92 @@
|
|||||||
|
@rem
|
||||||
|
@rem Copyright 2015 the original author or authors.
|
||||||
|
@rem
|
||||||
|
@rem Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
@rem you may not use this file except in compliance with the License.
|
||||||
|
@rem You may obtain a copy of the License at
|
||||||
|
@rem
|
||||||
|
@rem https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
@rem
|
||||||
|
@rem Unless required by applicable law or agreed to in writing, software
|
||||||
|
@rem distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
@rem See the License for the specific language governing permissions and
|
||||||
|
@rem limitations under the License.
|
||||||
|
@rem
|
||||||
|
|
||||||
|
@if "%DEBUG%"=="" @echo off
|
||||||
|
@rem ##########################################################################
|
||||||
|
@rem
|
||||||
|
@rem Gradle startup script for Windows
|
||||||
|
@rem
|
||||||
|
@rem ##########################################################################
|
||||||
|
|
||||||
|
@rem Set local scope for the variables with windows NT shell
|
||||||
|
if "%OS%"=="Windows_NT" setlocal
|
||||||
|
|
||||||
|
set DIRNAME=%~dp0
|
||||||
|
if "%DIRNAME%"=="" set DIRNAME=.
|
||||||
|
@rem This is normally unused
|
||||||
|
set APP_BASE_NAME=%~n0
|
||||||
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
|
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
|
||||||
|
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
|
||||||
|
|
||||||
|
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
|
||||||
|
|
||||||
|
@rem Find java.exe
|
||||||
|
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||||
|
|
||||||
|
set JAVA_EXE=java.exe
|
||||||
|
%JAVA_EXE% -version >NUL 2>&1
|
||||||
|
if %ERRORLEVEL% equ 0 goto execute
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:findJavaFromJavaHome
|
||||||
|
set JAVA_HOME=%JAVA_HOME:"=%
|
||||||
|
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||||
|
|
||||||
|
if exist "%JAVA_EXE%" goto execute
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:execute
|
||||||
|
@rem Setup the command line
|
||||||
|
|
||||||
|
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||||
|
|
||||||
|
|
||||||
|
@rem Execute Gradle
|
||||||
|
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
|
||||||
|
|
||||||
|
:end
|
||||||
|
@rem End local scope for the variables with windows NT shell
|
||||||
|
if %ERRORLEVEL% equ 0 goto mainEnd
|
||||||
|
|
||||||
|
:fail
|
||||||
|
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||||
|
rem the _cmd.exe /c_ return code!
|
||||||
|
set EXIT_CODE=%ERRORLEVEL%
|
||||||
|
if %EXIT_CODE% equ 0 set EXIT_CODE=1
|
||||||
|
if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
|
||||||
|
exit /b %EXIT_CODE%
|
||||||
|
|
||||||
|
:mainEnd
|
||||||
|
if "%OS%"=="Windows_NT" endlocal
|
||||||
|
|
||||||
|
:omega
|
||||||
@@ -0,0 +1,519 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
or more contributor license agreements. See the NOTICE file
|
||||||
|
distributed with this work for additional information
|
||||||
|
regarding copyright ownership. The ASF licenses this file
|
||||||
|
to you under the Apache License, Version 2.0 (the
|
||||||
|
"License"); you may not use this file except in compliance
|
||||||
|
with the License. You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing,
|
||||||
|
software distributed under the License is distributed on an
|
||||||
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
KIND, either express or implied. See the License for the
|
||||||
|
specific language governing permissions and limitations
|
||||||
|
under the License.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<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>
|
||||||
|
|
||||||
|
<!-- for more information, see the documentation of this POM: http://maven.apache.org/pom/asf/ -->
|
||||||
|
<groupId>org.apache</groupId>
|
||||||
|
<artifactId>apache</artifactId>
|
||||||
|
<version>24</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>The Apache Software Foundation</name>
|
||||||
|
<description>
|
||||||
|
The Apache Software Foundation provides support for the Apache community of open-source software projects.
|
||||||
|
The Apache projects are characterized by a collaborative, consensus based development process, an open and
|
||||||
|
pragmatic software license, and a desire to create high quality software that leads the way in its field.
|
||||||
|
We consider ourselves not simply a group of projects sharing a server, but rather a community of developers
|
||||||
|
and users.
|
||||||
|
</description>
|
||||||
|
<url>https://www.apache.org/</url>
|
||||||
|
<organization>
|
||||||
|
<name>The Apache Software Foundation</name>
|
||||||
|
<url>https://www.apache.org/</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License, Version 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
<mailingLists>
|
||||||
|
<mailingList>
|
||||||
|
<name>Apache Announce List</name>
|
||||||
|
<subscribe>announce-subscribe@apache.org</subscribe>
|
||||||
|
<unsubscribe>announce-unsubscribe@apache.org</unsubscribe>
|
||||||
|
<post>announce@apache.org</post>
|
||||||
|
<archive>https://mail-archives.apache.org/mod_mbox/www-announce/</archive>
|
||||||
|
</mailingList>
|
||||||
|
</mailingLists>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git</connection>
|
||||||
|
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-apache-parent.git</developerConnection>
|
||||||
|
<url>https://github.com/apache/maven-apache-parent/tree/${project.scm.tag}</url>
|
||||||
|
<tag>apache-24</tag>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<id>apache.releases.https</id>
|
||||||
|
<name>Apache Release Distribution Repository</name>
|
||||||
|
<url>https://repository.apache.org/service/local/staging/deploy/maven2</url>
|
||||||
|
</repository>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>apache.snapshots.https</id>
|
||||||
|
<name>${distMgmtSnapshotsName}</name>
|
||||||
|
<url>${distMgmtSnapshotsUrl}</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<distMgmtSnapshotsName>Apache Development Snapshot Repository</distMgmtSnapshotsName>
|
||||||
|
<distMgmtSnapshotsUrl>https://repository.apache.org/content/repositories/snapshots</distMgmtSnapshotsUrl>
|
||||||
|
<organization.logo>https://www.apache.org/images/asf_logo_wide_2016.png</organization.logo>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
|
<sourceReleaseAssemblyDescriptor>source-release</sourceReleaseAssemblyDescriptor>
|
||||||
|
<gpg.useagent>true</gpg.useagent>
|
||||||
|
<minimalMavenBuildVersion>3.1.1</minimalMavenBuildVersion>
|
||||||
|
<minimalJavaBuildVersion>1.8</minimalJavaBuildVersion>
|
||||||
|
<maven.compiler.source>${maven.compiler.target}</maven.compiler.source>
|
||||||
|
<maven.compiler.target>1.7</maven.compiler.target>
|
||||||
|
<surefire.version>2.22.2</surefire.version><!-- for surefire, failsafe and surefire-report -->
|
||||||
|
<assembly.tarLongFileMode>posix</assembly.tarLongFileMode>
|
||||||
|
<!-- set this property for all derived projects:
|
||||||
|
<project.build.outputTimestamp>2020-01-22T15:10:38Z</project.build.outputTimestamp>
|
||||||
|
-->
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>apache.snapshots</id>
|
||||||
|
<name>Apache Snapshot Repository</name>
|
||||||
|
<url>https://repository.apache.org/snapshots</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>apache.snapshots</id>
|
||||||
|
<name>Apache Snapshot Repository</name>
|
||||||
|
<url>https://repository.apache.org/snapshots</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<!-- set versions of common plugins for reproducibility, ordered alphabetically -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-antrun-plugin</artifactId>
|
||||||
|
<version>3.0.0</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
<version>3.3.0</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-clean-plugin</artifactId>
|
||||||
|
<version>3.1.0</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>3.8.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
|
<version>3.1.2</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
|
<version>2.8.2</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-docck-plugin</artifactId>
|
||||||
|
<version>1.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-ear-plugin</artifactId>
|
||||||
|
<version>3.2.0</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<version>1.4.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-failsafe-plugin</artifactId>
|
||||||
|
<version>${surefire.version}</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
|
<version>3.0.1</version>
|
||||||
|
<configuration>
|
||||||
|
<gpgArguments>
|
||||||
|
<arg>--digest-algo=SHA512</arg>
|
||||||
|
</gpgArguments>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-help-plugin</artifactId>
|
||||||
|
<version>3.2.0</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-install-plugin</artifactId>
|
||||||
|
<version>2.5.2</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-invoker-plugin</artifactId>
|
||||||
|
<version>3.2.2</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>3.2.0</version>
|
||||||
|
<configuration>
|
||||||
|
<archive>
|
||||||
|
<manifest>
|
||||||
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
||||||
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
||||||
|
</manifest>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<version>3.3.0</version>
|
||||||
|
<configuration>
|
||||||
|
<notimestamp>true</notimestamp><!-- avoid noise for svn/gitpubsub -->
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-plugin-plugin</artifactId>
|
||||||
|
<version>3.6.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||||
|
<version>3.1.2</version>
|
||||||
|
<configuration>
|
||||||
|
<pluginManagementExcludes>
|
||||||
|
<exclude>org.eclipse.m2e:lifecycle-mapping</exclude>
|
||||||
|
</pluginManagementExcludes>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<!-- START SNIPPET: release-plugin-configuration -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<version>3.0.0-M4</version>
|
||||||
|
<configuration>
|
||||||
|
<useReleaseProfile>false</useReleaseProfile>
|
||||||
|
<goals>deploy</goals>
|
||||||
|
<releaseProfiles>apache-release</releaseProfiles>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<!-- END SNIPPET: release-plugin-configuration -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||||
|
<version>1.7.0</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-resources-plugin</artifactId>
|
||||||
|
<version>3.2.0</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-scm-plugin</artifactId>
|
||||||
|
<version>1.11.2</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-scm-publish-plugin</artifactId>
|
||||||
|
<version>3.1.0</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<version>3.9.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<version>3.2.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>${surefire.version}</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||||
|
<version>${surefire.version}</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-war-plugin</artifactId>
|
||||||
|
<version>3.3.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
|
<version>3.2.4</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.rat</groupId>
|
||||||
|
<artifactId>apache-rat-plugin</artifactId>
|
||||||
|
<version>0.13</version>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<!-- We want to package up license resources in the JARs produced -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-remote-resources-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>process-resource-bundles</id>
|
||||||
|
<goals>
|
||||||
|
<goal>process</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<resourceBundles>
|
||||||
|
<resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
|
||||||
|
</resourceBundles>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>enforce-maven-version</id>
|
||||||
|
<goals>
|
||||||
|
<goal>enforce</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<rules>
|
||||||
|
<requireMavenVersion>
|
||||||
|
<version>${minimalMavenBuildVersion}</version>
|
||||||
|
</requireMavenVersion>
|
||||||
|
</rules>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
<execution>
|
||||||
|
<id>enforce-java-version</id>
|
||||||
|
<goals>
|
||||||
|
<goal>enforce</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<rules>
|
||||||
|
<requireJavaVersion>
|
||||||
|
<version>${minimalJavaBuildVersion}</version>
|
||||||
|
</requireJavaVersion>
|
||||||
|
</rules>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-descriptor</id>
|
||||||
|
<goals>
|
||||||
|
<goal>attach-descriptor</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<!-- START SNIPPET: release-profile -->
|
||||||
|
<profile>
|
||||||
|
<id>apache-release</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<!-- Create a source-release artifact that contains the fully buildable
|
||||||
|
project directory source structure. This is the artifact which is
|
||||||
|
the official subject of any release vote. -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.apache.resources</groupId>
|
||||||
|
<artifactId>apache-source-release-assembly-descriptor</artifactId>
|
||||||
|
<version>1.0.6</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>source-release-assembly</id>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>single</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<runOnlyAtExecutionRoot>true</runOnlyAtExecutionRoot>
|
||||||
|
<descriptorRefs>
|
||||||
|
<descriptorRef>${sourceReleaseAssemblyDescriptor}</descriptorRef>
|
||||||
|
</descriptorRefs>
|
||||||
|
<tarLongFileMode>posix</tarLongFileMode>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<!-- We want to deploy the artifact to a staging location for perusal -->
|
||||||
|
<plugin>
|
||||||
|
<inherited>true</inherited>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<updateReleaseInfo>true</updateReleaseInfo>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-sources</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar-no-fork</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-javadocs</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<!-- calculate checksums of source release for Apache dist area -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>net.nicoulaj.maven.plugins</groupId>
|
||||||
|
<artifactId>checksum-maven-plugin</artifactId>
|
||||||
|
<version>1.11</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>source-release-checksum</id>
|
||||||
|
<goals>
|
||||||
|
<goal>artifacts</goal>
|
||||||
|
</goals>
|
||||||
|
<!-- execute prior to maven-gpg-plugin:sign due to https://github.com/nicoulaj/checksum-maven-plugin/issues/112 -->
|
||||||
|
<phase>post-integration-test</phase>
|
||||||
|
<configuration>
|
||||||
|
<algorithms>
|
||||||
|
<algorithm>SHA-512</algorithm>
|
||||||
|
</algorithms>
|
||||||
|
<!-- https://maven.apache.org/apache-resource-bundles/#source-release-assembly-descriptor -->
|
||||||
|
<includeClassifiers>source-release</includeClassifiers>
|
||||||
|
<excludeMainArtifact>true</excludeMainArtifact>
|
||||||
|
<csvSummary>false</csvSummary>
|
||||||
|
<!-- attach SHA-512 checksum as well to upload to Maven Staging Repo,
|
||||||
|
as this eases uploading from stage to dist and doesn't do harm in Maven Central -->
|
||||||
|
<attachChecksums>true</attachChecksums>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<!-- We want to sign the artifact, the POM, and all attached artifacts (except for SHA-512 checksum) -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>sign-release-artifacts</id>
|
||||||
|
<goals>
|
||||||
|
<goal>sign</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
<!-- END SNIPPET: release-profile -->
|
||||||
|
<profile>
|
||||||
|
<id>enforce-output-timestamp-property</id>
|
||||||
|
<activation>
|
||||||
|
<file>
|
||||||
|
<missing>${basedir}/.maven-apache-parent.marker</missing>
|
||||||
|
</file>
|
||||||
|
</activation>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>enforce-output-timestamp-property</id>
|
||||||
|
<goals>
|
||||||
|
<goal>enforce</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<rules>
|
||||||
|
<requireProperty>
|
||||||
|
<property>project.build.outputTimestamp</property>
|
||||||
|
<message>The property "project.build.outputTimestamp" must be set on the reactor's root pom.xml to make the build reproducible. Further information at "https://maven.apache.org/guides/mini/guide-reproducible-builds.html".</message>
|
||||||
|
</requireProperty>
|
||||||
|
</rules>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
</project>
|
||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,40 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<!-- This module was also published with a richer model, Gradle metadata, -->
|
||||||
|
<!-- which should be used instead. Do not delete the following line which -->
|
||||||
|
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
||||||
|
<!-- that they should prefer consuming it instead. -->
|
||||||
|
<!-- do_not_remove: published-with-gradle-metadata -->
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>io.spring.gradle</groupId>
|
||||||
|
<artifactId>dependency-management-plugin</artifactId>
|
||||||
|
<version>1.1.5</version>
|
||||||
|
<name>Dependency management plugin</name>
|
||||||
|
<description>A Gradle plugin that provides Maven-like dependency management functionality</description>
|
||||||
|
<url>https://github.com/spring-gradle-plugins/dependency-management-plugin</url>
|
||||||
|
<organization>
|
||||||
|
<name>VMware, Inc.</name>
|
||||||
|
<url>https://spring.io</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>wilkinsona</id>
|
||||||
|
<name>Andy Wilkinson</name>
|
||||||
|
<email>wilkinsona@vmware.com</email>
|
||||||
|
<roles>
|
||||||
|
<role>Project lead</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:https://github.com/spring-gradle-plugins/dependency-management-plugin</connection>
|
||||||
|
<url>https://github.com/spring-gradle-plugins/dependency-management-plugin</url>
|
||||||
|
</scm>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,975 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-bom</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>Apache Groovy</name>
|
||||||
|
<description>Groovy: A powerful, dynamic language for the JVM</description>
|
||||||
|
<url>https://groovy-lang.org</url>
|
||||||
|
<inceptionYear>2003</inceptionYear>
|
||||||
|
<organization>
|
||||||
|
<name>Apache Software Foundation</name>
|
||||||
|
<url>https://apache.org</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>glaforge</id>
|
||||||
|
<name>Guillaume Laforge</name>
|
||||||
|
<organization>Google</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>bob</id>
|
||||||
|
<name>bob mcwhirter</name>
|
||||||
|
<email>bob@werken.com</email>
|
||||||
|
<organization>The Werken Company</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Founder</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jstrachan</id>
|
||||||
|
<name>James Strachan</name>
|
||||||
|
<email>james@coredevelopers.com</email>
|
||||||
|
<organization>Core Developers Network</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Founder</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>joe</id>
|
||||||
|
<name>Joe Walnes</name>
|
||||||
|
<organization>ThoughtWorks</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>skizz</id>
|
||||||
|
<name>Chris Stevenson</name>
|
||||||
|
<organization>ThoughtWorks</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jamiemc</id>
|
||||||
|
<name>Jamie McCrindle</name>
|
||||||
|
<organization>Three</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>mattf</id>
|
||||||
|
<name>Matt Foemmel</name>
|
||||||
|
<organization>ThoughtWorks</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>alextkachman</id>
|
||||||
|
<name>Alex Tkachman</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>roshandawrani</id>
|
||||||
|
<name>Roshan Dawrani</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>spullara</id>
|
||||||
|
<name>Sam Pullara</name>
|
||||||
|
<email>sam@sampullara.com</email>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>kasper</id>
|
||||||
|
<name>Kasper Nielsen</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>travis</id>
|
||||||
|
<name>Travis Kay</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>zohar</id>
|
||||||
|
<name>Zohar Melamed</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jwilson</id>
|
||||||
|
<name>John Wilson</name>
|
||||||
|
<email>tug@wilson.co.uk</email>
|
||||||
|
<organization>The Wilson Partnership</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>cpoirier</id>
|
||||||
|
<name>Chris Poirier</name>
|
||||||
|
<email>cpoirier@dreaming.org</email>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>ckl</id>
|
||||||
|
<name>Christiaan ten Klooster</name>
|
||||||
|
<email>ckl@dacelo.nl</email>
|
||||||
|
<organization>Dacelo WebDevelopment</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>goetze</id>
|
||||||
|
<name>Steve Goetze</name>
|
||||||
|
<email>goetze@dovetail.com</email>
|
||||||
|
<organization>Dovetailed Technologies, LLC</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>bran</id>
|
||||||
|
<name>Bing Ran</name>
|
||||||
|
<email>b55r@sina.com</email>
|
||||||
|
<organization>Leadingcare</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jez</id>
|
||||||
|
<name>Jeremy Rayner</name>
|
||||||
|
<email>jeremy.rayner@gmail.com</email>
|
||||||
|
<organization>javanicus</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jstump</id>
|
||||||
|
<name>John Stump</name>
|
||||||
|
<email>johnstump2@yahoo.com</email>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>blackdrag</id>
|
||||||
|
<name>Jochen Theodorou</name>
|
||||||
|
<email>blackdrag@gmx.org</email>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>russel</id>
|
||||||
|
<name>Russel Winder</name>
|
||||||
|
<email>russel@winder.org.uk</email>
|
||||||
|
<organization>Concertant LLP & It'z Interactive Ltd</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
<role>Founder of Gant</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>phk</id>
|
||||||
|
<name>Pilho Kim</name>
|
||||||
|
<email>phkim@cluecom.co.kr</email>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>cstein</id>
|
||||||
|
<name>Christian Stein</name>
|
||||||
|
<email>sormuras@gmx.de</email>
|
||||||
|
<organization>CTSR.de</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>mittie</id>
|
||||||
|
<name>Dierk Koenig</name>
|
||||||
|
<organization>Karakun AG</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>paulk</id>
|
||||||
|
<name>Paul King</name>
|
||||||
|
<email>paulk@asert.com.au</email>
|
||||||
|
<organization>OCI, Australia</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Project Manager</role>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>galleon</id>
|
||||||
|
<name>Guillaume Alleon</name>
|
||||||
|
<email>guillaume.alleon@gmail.com</email>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>user57</id>
|
||||||
|
<name>Jason Dillon</name>
|
||||||
|
<email>jason@planet57.com</email>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>shemnon</id>
|
||||||
|
<name>Danno Ferrin</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jwill</id>
|
||||||
|
<name>James Williams</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>timyates</id>
|
||||||
|
<name>Tim Yates</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>aalmiray</id>
|
||||||
|
<name>Andres Almiray</name>
|
||||||
|
<email>aalmiray@users.sourceforge.net</email>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>mguillem</id>
|
||||||
|
<name>Marc Guillemot</name>
|
||||||
|
<email>mguillemot@yahoo.fr</email>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jimwhite</id>
|
||||||
|
<name>Jim White</name>
|
||||||
|
<email>jim@pagesmiths.com</email>
|
||||||
|
<organization>IFCX.org</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>pniederw</id>
|
||||||
|
<name>Peter Niederwieser</name>
|
||||||
|
<email>pniederw@gmail.com</email>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>andresteingress</id>
|
||||||
|
<name>Andre Steingress</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>hamletdrc</id>
|
||||||
|
<name>Hamlet D'Arcy</name>
|
||||||
|
<email>hamletdrc@gmail.com</email>
|
||||||
|
<roles>
|
||||||
|
<role>Developer Emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>melix</id>
|
||||||
|
<name>Cedric Champeau</name>
|
||||||
|
<email>cedric.champeau@gmail.com</email>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>pascalschumacher</id>
|
||||||
|
<name>Pascal Schumacher</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>sunlan</id>
|
||||||
|
<name>Daniel Sun</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>rpopma</id>
|
||||||
|
<name>Remko Popma</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>grocher</id>
|
||||||
|
<name>Graeme Rocher</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>emilles</id>
|
||||||
|
<name>Eric Milles</name>
|
||||||
|
<organization>Thomson Reuters</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<contributors>
|
||||||
|
<contributor>
|
||||||
|
<name>Joern Eyrich</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Robert Kuzelj</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Rod Cope</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Yuri Schimke</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>James Birchfield</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Robert Fuller</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Sergey Udovenko</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Hallvard Traetteberg</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Peter Reilly</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Brian McCallister</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Richard Monson-Haefel</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Brian Larson</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Artur Biesiadowski</name>
|
||||||
|
<email>abies@pg.gda.pl</email>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Ivan Z. Ganza</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Larry Jacobson</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Jake Gage</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Arjun Nayyar</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Masato Nagai</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Mark Chu-Carroll</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Mark Turansky</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Jean-Louis Berliet</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Graham Miller</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Marc Palmer</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Tugdual Grall</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Edwin Tellman</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Evan "Hippy" Slatis</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Mike Dillon</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Bernhard Huber</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Yasuharu Nakano</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Marc DeXeT</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Dejan Bosanac</name>
|
||||||
|
<email>dejan@nighttale.net</email>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Denver Dino</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Ted Naleid</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Ted Leung</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Merrick Schincariol</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Chanwit Kaewkasi</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Stefan Matthias Aust</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Andy Dwelly</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Philip Milne</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Tiago Fernandez</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Steve Button</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Joachim Baumann</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Jochen Eddel+</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Ilinca V. Hallberg</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Björn Westlin</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Andrew Glover</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Brad Long</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>John Bito</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Jim Jagielski</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Rodolfo Velasco</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>John Hurst</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Merlyn Albery-Speyer</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>jeremi Joslin</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>UEHARA Junji</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>NAKANO Yasuharu</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Dinko Srkoc</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Raffaele Cigni</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Alberto Vilches Raton</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Paulo Poiati</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Alexander Klein</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Adam Murdoch</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>David Durham</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Daniel Henrique Alves Lima</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>John Wagenleitner</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Colin Harrington</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Brian Alexander</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Jan Weitz</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Chris K Wensel</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>David Sutherland</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Mattias Reichel</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>David Lee</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Sergei Egorov</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Hein Meling</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Michael Baehr</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Craig Andrews</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Peter Ledbrook</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Scott Stirling</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Thibault Kruse</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Tim Tiemens</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Mike Spille</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Nikolay Chugunov</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Francesco Durbin</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Paolo Di Tommaso</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Rene Scheibe</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Matias Bjarland</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Tomasz Bujok</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Richard Hightower</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Andrey Bloschetsov</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Yu Kobayashi</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Nick Grealy</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Vaclav Pech</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Chuck Tassoni</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Steven Devijver</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Ben Manes</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Troy Heninger</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Andrew Eisenberg</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Eric Milles</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Kohsuke Kawaguchi</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Scott Vlaminck</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Hjalmar Ekengren</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Rafael Luque</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Joachim Heldmann</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>dgouyette</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Marcin Grzejszczak</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Pap Lőrinc</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Guillaume Balaine</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Santhosh Kumar T</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Alan Green</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Marty Saxton</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Marcel Overdijk</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Jonathan Carlson</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Thomas Heller</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>John Stump</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Ivan Ganza</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Alex Popescu</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Martin Kempf</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Martin Ghados</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Martin Stockhammer</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Martin C. Martin</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Alexey Verkhovsky</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Alberto Mijares</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Matthias Cullmann</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Tomek Bujok</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Stephane Landelle</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Stephane Maldini</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Mark Volkmann</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Andrew Taylor</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Vladimir Vivien</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Vladimir Orany</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Joe Wolf</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Kent Inge Fagerland Simonsen</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Tom Nichols</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Ingo Hoffmann</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Sergii Bondarenko</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>mgroovy</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Dominik Przybysz</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Jason Thomas</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Trygve Amundsens</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Morgan Hankins</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Shruti Gupta</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Ben Yu</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Dejan Bosanac</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Lidia Donajczyk-Lipinska</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Peter Gromov</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Johannes Link</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Chris Reeves</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Sean Timm</name>
|
||||||
|
</contributor>
|
||||||
|
<contributor>
|
||||||
|
<name>Dmitry Vyazelenko</name>
|
||||||
|
</contributor>
|
||||||
|
</contributors>
|
||||||
|
<mailingLists>
|
||||||
|
<mailingList>
|
||||||
|
<name>Groovy Developer List</name>
|
||||||
|
<archive>https://mail-archives.apache.org/mod_mbox/groovy-dev/</archive>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Groovy User List</name>
|
||||||
|
<archive>https://mail-archives.apache.org/mod_mbox/groovy-users/</archive>
|
||||||
|
</mailingList>
|
||||||
|
</mailingLists>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:https://github.com/apache/groovy.git</connection>
|
||||||
|
<developerConnection>scm:git:https://github.com/apache/groovy.git</developerConnection>
|
||||||
|
<url>https://github.com/apache/groovy.git</url>
|
||||||
|
</scm>
|
||||||
|
<issueManagement>
|
||||||
|
<system>jira</system>
|
||||||
|
<url>https://issues.apache.org/jira/browse/GROOVY</url>
|
||||||
|
</issueManagement>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-ant</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-astbuilder</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-bsf</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-cli-commons</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-cli-picocli</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-console</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-datetime</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-dateutil</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-docgenerator</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-groovydoc</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-groovysh</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-jaxb</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-jmx</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-json</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-jsr223</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-macro</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-nio</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-servlet</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-sql</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-swing</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-templates</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-test</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-test-junit5</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-testng</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-xml</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.groovy</groupId>
|
||||||
|
<artifactId>groovy-yaml</artifactId>
|
||||||
|
<version>3.0.19</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,419 @@
|
|||||||
|
<?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>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-build-configuration-parent</artifactId>
|
||||||
|
<version>13.0.20.Final</version>
|
||||||
|
<relativePath>../pom.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<artifactId>infinispan-bom</artifactId>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>Infinispan BOM</name>
|
||||||
|
<description>Infinispan BOM module</description>
|
||||||
|
<url>http://www.infinispan.org</url>
|
||||||
|
<organization>
|
||||||
|
<name>JBoss, a division of Red Hat</name>
|
||||||
|
<url>http://www.jboss.org</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>placeholder</id>
|
||||||
|
<name>See http://www.infinispan.org for a complete list of contributors</name>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<mailingLists>
|
||||||
|
<mailingList>
|
||||||
|
<name>Infinispan Issues</name>
|
||||||
|
<subscribe>https://lists.jboss.org/mailman/listinfo/infinispan-issues</subscribe>
|
||||||
|
<unsubscribe>https://lists.jboss.org/mailman/listinfo/infinispan-issues</unsubscribe>
|
||||||
|
<post>infinispan-issues@lists.jboss.org</post>
|
||||||
|
<archive>http://lists.jboss.org/pipermail/infinispan-issues/</archive>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Infinispan Developers</name>
|
||||||
|
<subscribe>https://lists.jboss.org/mailman/listinfo/infinispan-dev</subscribe>
|
||||||
|
<unsubscribe>https://lists.jboss.org/mailman/listinfo/infinispan-dev</unsubscribe>
|
||||||
|
<post>infinispan-dev@lists.jboss.org</post>
|
||||||
|
<archive>http://lists.jboss.org/pipermail/infinispan-dev/</archive>
|
||||||
|
</mailingList>
|
||||||
|
</mailingLists>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git@github.com:infinispan/infinispan.git</connection>
|
||||||
|
<developerConnection>scm:git:git@github.com:infinispan/infinispan.git</developerConnection>
|
||||||
|
<url>https://github.com/infinispan/infinispan</url>
|
||||||
|
</scm>
|
||||||
|
<issueManagement>
|
||||||
|
<system>jira</system>
|
||||||
|
<url>https://issues.jboss.org/browse/ISPN</url>
|
||||||
|
</issueManagement>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<!-- Java source/target version -->
|
||||||
|
<version.java>1.8</version.java>
|
||||||
|
|
||||||
|
<versionx.org.infinispan.infinispan-console>${version.console}</versionx.org.infinispan.infinispan-console>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-api</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-cachestore-jdbc</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-cachestore-sql</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-cachestore-jpa</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-cachestore-remote</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-cachestore-rocksdb</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-cdi-common</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-cdi-embedded</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-cdi-remote</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-checkstyle</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-cli-client</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-client-hotrod</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-client-rest</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-key-value-store-client</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-clustered-counter</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-clustered-lock</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-commons</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- TODO should be here? -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-commons-test</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-component-annotations</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-component-processor</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-core</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-jboss-marshalling</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-extended-statistics</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-hibernate-cache-commons</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-hibernate-cache-spi</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-hibernate-cache-v53</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-jcache-commons</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-jcache</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-jcache-remote</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-console</artifactId>
|
||||||
|
<version>${versionx.org.infinispan.infinispan-console}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-multimap</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-objectfilter</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-query-core</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-query</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-query-dsl</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-remote-query-client</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-remote-query-server</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-scripting</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- TODO should be here? -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-server-core</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- TODO should be here? -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-server-hotrod</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- TODO should be here? -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-server-memcached</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- TODO should be here? -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-server-rest</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- TODO should be here? -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-server-router</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-server-runtime</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-server-testdriver-core</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-server-testdriver-junit4</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-server-testdriver-junit5</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-spring5-common</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-spring5-embedded</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-spring5-remote</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-spring-boot-starter-embedded</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-spring-boot-starter-remote</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-tasks</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-tasks-api</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-tools</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-anchored-keys</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan.protostream</groupId>
|
||||||
|
<artifactId>protostream</artifactId>
|
||||||
|
<version>${version.protostream}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan.protostream</groupId>
|
||||||
|
<artifactId>protostream-types</artifactId>
|
||||||
|
<version>${version.protostream}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan.protostream</groupId>
|
||||||
|
<artifactId>protostream-processor</artifactId>
|
||||||
|
<version>${version.protostream}</version>
|
||||||
|
<!-- compile-only dependency -->
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-cloudevents-integration</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>community-release</id>
|
||||||
|
<activation>
|
||||||
|
<activeByDefault>true</activeByDefault>
|
||||||
|
</activation>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-marshaller-kryo</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-marshaller-kryo-bundle</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-marshaller-protostuff</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-marshaller-protostuff-bundle</artifactId>
|
||||||
|
<version>${version.infinispan}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,338 @@
|
|||||||
|
<?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>org.jboss</groupId>
|
||||||
|
<artifactId>jboss-parent</artifactId>
|
||||||
|
<version>36</version>
|
||||||
|
<!-- prevent the default ../pom.xml: the parent pom lives elsewhere -->
|
||||||
|
<relativePath/>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<groupId>org.infinispan</groupId>
|
||||||
|
<artifactId>infinispan-build-configuration-parent</artifactId>
|
||||||
|
<version>13.0.20.Final</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>Infinispan Common Parent</name>
|
||||||
|
<description>Infinispan common parent POM module</description>
|
||||||
|
<url>http://www.infinispan.org</url>
|
||||||
|
<organization>
|
||||||
|
<name>JBoss, a division of Red Hat</name>
|
||||||
|
<url>http://www.jboss.org</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>placeholder</id>
|
||||||
|
<name>See http://www.infinispan.org for a complete list of contributors</name>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<mailingLists>
|
||||||
|
<mailingList>
|
||||||
|
<name>Infinispan Issues</name>
|
||||||
|
<subscribe>https://lists.jboss.org/mailman/listinfo/infinispan-issues</subscribe>
|
||||||
|
<unsubscribe>https://lists.jboss.org/mailman/listinfo/infinispan-issues</unsubscribe>
|
||||||
|
<post>infinispan-issues@lists.jboss.org</post>
|
||||||
|
<archive>http://lists.jboss.org/pipermail/infinispan-issues/</archive>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Infinispan Developers</name>
|
||||||
|
<subscribe>https://lists.jboss.org/mailman/listinfo/infinispan-dev</subscribe>
|
||||||
|
<unsubscribe>https://lists.jboss.org/mailman/listinfo/infinispan-dev</unsubscribe>
|
||||||
|
<post>infinispan-dev@lists.jboss.org</post>
|
||||||
|
<archive>http://lists.jboss.org/pipermail/infinispan-dev/</archive>
|
||||||
|
</mailingList>
|
||||||
|
</mailingLists>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git@github.com:infinispan/infinispan.git</connection>
|
||||||
|
<developerConnection>scm:git:git@github.com:infinispan/infinispan.git</developerConnection>
|
||||||
|
<url>https://github.com/infinispan/infinispan</url>
|
||||||
|
</scm>
|
||||||
|
<issueManagement>
|
||||||
|
<system>jira</system>
|
||||||
|
<url>https://issues.jboss.org/browse/ISPN</url>
|
||||||
|
</issueManagement>
|
||||||
|
<ciManagement>
|
||||||
|
<system>Jenkins</system>
|
||||||
|
<url>https://ci.infinispan.org</url>
|
||||||
|
<notifiers>
|
||||||
|
<notifier>
|
||||||
|
<type>mail</type>
|
||||||
|
<address>infinispan-commits@lists.jboss.org</address>
|
||||||
|
</notifier>
|
||||||
|
</notifiers>
|
||||||
|
</ciManagement>
|
||||||
|
<distributionManagement>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>${maven.snapshots.repo.id}</id>
|
||||||
|
<url>${maven.snapshots.repo.url}</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
<repository>
|
||||||
|
<id>${maven.releases.repo.id}</id>
|
||||||
|
<url>${maven.releases.repo.url}</url>
|
||||||
|
</repository>
|
||||||
|
</distributionManagement>
|
||||||
|
<modules>
|
||||||
|
<module>bom</module>
|
||||||
|
</modules>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
|
|
||||||
|
<!-- === Branding Configuration === -->
|
||||||
|
<infinispan.brand.name>Infinispan</infinispan.brand.name>
|
||||||
|
<infinispan.brand.prefix>infinispan</infinispan.brand.prefix>
|
||||||
|
<infinispan.brand.short-name>infinispan</infinispan.brand.short-name>
|
||||||
|
<infinispan.brand.version>${project.version}</infinispan.brand.version>
|
||||||
|
<infinispan.codename>Triskaidekaphobia</infinispan.codename>
|
||||||
|
<infinispan.module.slot.prefix>ispn</infinispan.module.slot.prefix>
|
||||||
|
<infinispan.base.version>13.0</infinispan.base.version>
|
||||||
|
<infinispan.module.slot>${infinispan.module.slot.prefix}-${infinispan.base.version}</infinispan.module.slot>
|
||||||
|
<infinispan.core.schema.version>${infinispan.base.version}</infinispan.core.schema.version>
|
||||||
|
<infinispan.olm.openshift.source>community-operators</infinispan.olm.openshift.source>
|
||||||
|
<infinispan.olm.k8s.source>operatorhubio-catalog</infinispan.olm.k8s.source>
|
||||||
|
<infinispan.olm.name>infinispan</infinispan.olm.name>
|
||||||
|
<infinispan.gpg.key>9E31AB27445478DB</infinispan.gpg.key>
|
||||||
|
<wildfly.brand.name>WildFly</wildfly.brand.name>
|
||||||
|
<wildfly.brand.prefix>wildfly</wildfly.brand.prefix>
|
||||||
|
|
||||||
|
<!-- maven repository urls -->
|
||||||
|
<maven.releases.nexus.url>https://s01.oss.sonatype.org/</maven.releases.nexus.url>
|
||||||
|
<maven.releases.repo.id>ossrh</maven.releases.repo.id>
|
||||||
|
<maven.releases.repo.url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</maven.releases.repo.url>
|
||||||
|
<maven.snapshots.repo.id>ossrh</maven.snapshots.repo.id>
|
||||||
|
<maven.snapshots.repo.url>https://s01.oss.sonatype.org/content/repositories/snapshots</maven.snapshots.repo.url>
|
||||||
|
|
||||||
|
<!-- === Application Server Configuration === -->
|
||||||
|
|
||||||
|
<!-- org.wildfly / org.jboss.eap -->
|
||||||
|
<appserver.groupId>org.wildfly</appserver.groupId>
|
||||||
|
<appserver.version>24.0.1.Final</appserver.version>
|
||||||
|
|
||||||
|
<!-- Java source/target version -->
|
||||||
|
<version.java>11</version.java>
|
||||||
|
|
||||||
|
<!-- Dependency versions -->
|
||||||
|
<version.ant>1.10.7</version.ant>
|
||||||
|
<version.ant-nodeps>1.8.1</version.ant-nodeps>
|
||||||
|
<version.ant-contrib>1.0b3</version.ant-contrib>
|
||||||
|
<version.antlr3>3.5.2</version.antlr3>
|
||||||
|
<version.arquillian>1.6.0.Final</version.arquillian>
|
||||||
|
<version.blockhound>1.0.6.RELEASE</version.blockhound>
|
||||||
|
<version.bouncycastle>1.70</version.bouncycastle>
|
||||||
|
<version.byteman>4.0.9</version.byteman>
|
||||||
|
<version.caffeine>2.8.4</version.caffeine>
|
||||||
|
<version.commons.compress>1.21</version.commons.compress>
|
||||||
|
<version.console>0.15.5.Final</version.console>
|
||||||
|
<version.fabric8.kubernetes-client>5.7.4</version.fabric8.kubernetes-client>
|
||||||
|
<version.glassfish.jaxb>2.3.1</version.glassfish.jaxb>
|
||||||
|
<version.glassfish.json>1.1.4</version.glassfish.json>
|
||||||
|
<version.groovy>2.4.8</version.groovy>
|
||||||
|
<version.hamcrest>1.3</version.hamcrest>
|
||||||
|
<version.hibernate.core>5.3.22.Final</version.hibernate.core>
|
||||||
|
<version.hibernate.search>6.0.8.Final</version.hibernate.search>
|
||||||
|
<version.infinispan>13.0.20.Final</version.infinispan>
|
||||||
|
<version.infinispan.arquillian>1.2.0.Beta3</version.infinispan.arquillian>
|
||||||
|
<version.infinispan.doclets>1.4.0.Final</version.infinispan.doclets>
|
||||||
|
<version.infinispan.maven-plugins>1.0.2.Final</version.infinispan.maven-plugins>
|
||||||
|
<version.io.agroal>1.12</version.io.agroal>
|
||||||
|
<version.io.mashona>1.0.0</version.io.mashona>
|
||||||
|
<version.jackson>2.14.1</version.jackson>
|
||||||
|
<version.jackson.databind>2.14.1</version.jackson.databind>
|
||||||
|
<version.jacoco>0.8.7</version.jacoco>
|
||||||
|
<version.jakarta.transaction>1.3.3</version.jakarta.transaction>
|
||||||
|
<version.jakarta.enterprise.cdi>2.0.2</version.jakarta.enterprise.cdi>
|
||||||
|
<version.jakarta.persistence>2.2.3</version.jakarta.persistence>
|
||||||
|
<version.javax.cache>1.1.0</version.javax.cache>
|
||||||
|
<version.jboss.logging>3.4.1.Final</version.jboss.logging>
|
||||||
|
<version.jboss.marshalling>2.0.12.Final</version.jboss.marshalling>
|
||||||
|
<version.jboss.naming>5.0.6.CR1</version.jboss.naming>
|
||||||
|
<version.jboss.narayana>5.12.0.Final</version.jboss.narayana>
|
||||||
|
<version.jboss.security>3.0.6.Final</version.jboss.security>
|
||||||
|
<version.jboss.shrinkwrap>1.2.6</version.jboss.shrinkwrap>
|
||||||
|
<version.jboss.shrinkwrap.descriptors>2.0.0</version.jboss.shrinkwrap.descriptors>
|
||||||
|
<version.jboss.shrinkwrap.resolver>3.1.3</version.jboss.shrinkwrap.resolver>
|
||||||
|
<version.jcip-annotations>1.0</version.jcip-annotations>
|
||||||
|
<version.jgroups>4.2.18.Final</version.jgroups>
|
||||||
|
<version.jsr107>1.1.0</version.jsr107>
|
||||||
|
<version.junit>4.13.1</version.junit>
|
||||||
|
<version.junit5>5.6.2</version.junit5>
|
||||||
|
<version.log4j>2.17.1</version.log4j>
|
||||||
|
<version.lucene>8.7.0</version.lucene>
|
||||||
|
<version.metainf-services>1.7</version.metainf-services>
|
||||||
|
<version.mockito>2.27.0</version.mockito>
|
||||||
|
<version.mockito_dep.bytebuddy>1.9.7</version.mockito_dep.bytebuddy>
|
||||||
|
<version.mockito_dep.objenesis>2.6</version.mockito_dep.objenesis>
|
||||||
|
<version.nashorn>15.3</version.nashorn>
|
||||||
|
<version.netty>4.1.100.Final</version.netty>
|
||||||
|
<version.okhttp>3.14.9</version.okhttp>
|
||||||
|
<version.openjdk.jmh>1.23</version.openjdk.jmh>
|
||||||
|
<version.org.wildfly.arquillian>3.0.1.Final</version.org.wildfly.arquillian>
|
||||||
|
<version.org.wildfly.core>16.0.1.Final</version.org.wildfly.core>
|
||||||
|
<version.org.wildfly.elytron>1.17.2.Final</version.org.wildfly.elytron>
|
||||||
|
<version.org.wildfly.openssl>2.2.5.Final</version.org.wildfly.openssl>
|
||||||
|
<version.org.wildfly.openssl.natives>2.2.2.SP01</version.org.wildfly.openssl.natives>
|
||||||
|
<version.org.wildfly.openssl.natives.linux_x86_64>2.2.2.SP01</version.org.wildfly.openssl.natives.linux_x86_64>
|
||||||
|
<version.org.wildfly.openssl.natives.macos_x86_64>2.2.2.Final</version.org.wildfly.openssl.natives.macos_x86_64>
|
||||||
|
<version.org.wildfly.openssl.natives.windows_x86_64>2.2.2.Final</version.org.wildfly.openssl.natives.windows_x86_64>
|
||||||
|
<version.picketbox>5.0.3.Final</version.picketbox>
|
||||||
|
<version.picketlink>2.5.5.SP12</version.picketlink>
|
||||||
|
<version.protostream>4.4.4.Final</version.protostream>
|
||||||
|
<version.protostuff>1.6.2</version.protostuff>
|
||||||
|
<version.reactivestreams>1.0.3</version.reactivestreams>
|
||||||
|
<version.rocksdb>6.22.1.1</version.rocksdb>
|
||||||
|
<version.rxjava>3.0.4</version.rxjava>
|
||||||
|
<version.sshd>2.10.0</version.sshd>
|
||||||
|
<version.smallrye-config>2.0.2</version.smallrye-config>
|
||||||
|
<version.smallrye-metrics>3.0.1</version.smallrye-metrics>
|
||||||
|
<version.microprofile-config-api>2.0</version.microprofile-config-api>
|
||||||
|
<version.microprofile-metrics-api>3.0</version.microprofile-metrics-api>
|
||||||
|
<version.snappy>1.1.10.5</version.snappy>
|
||||||
|
<version.spring.boot>2.6.6</version.spring.boot>
|
||||||
|
<version.spring5>5.3.18</version.spring5>
|
||||||
|
<version.spring.session>2.6.2</version.spring.session>
|
||||||
|
<version.micrometer>1.7.1</version.micrometer>
|
||||||
|
<version.kafka.client>2.7.2</version.kafka.client>
|
||||||
|
<version.xom>1.3.7</version.xom>
|
||||||
|
<version.xstream>1.4.20</version.xstream>
|
||||||
|
|
||||||
|
<!-- Plugin dependencies -->
|
||||||
|
<version.checkstyle.maven-plugin>3.1.1</version.checkstyle.maven-plugin>
|
||||||
|
<version.maven>3.8.2</version.maven>
|
||||||
|
<version.maven.antlr3>${version.antlr3}</version.maven.antlr3>
|
||||||
|
<version.maven.antrun>3.0.0</version.maven.antrun>
|
||||||
|
<version.maven.buildhelper>3.1.0</version.maven.buildhelper>
|
||||||
|
<version.maven.bundle>4.2.1</version.maven.bundle>
|
||||||
|
<version.maven.gpg>3.0.1</version.maven.gpg>
|
||||||
|
<version.maven-compiler-plugin>3.10.1</version.maven-compiler-plugin>
|
||||||
|
<version.maven.invoker>3.2.1</version.maven.invoker>
|
||||||
|
<version.maven.jar>3.2.0</version.maven.jar>
|
||||||
|
<version.maven.javadoc>3.4.0</version.maven.javadoc>
|
||||||
|
<version.maven-plugin-plugin>3.6.0</version.maven-plugin-plugin>
|
||||||
|
<version.maven.release>3.0.0-M1</version.maven.release>
|
||||||
|
<version.maven.remote.resource>1.5</version.maven.remote.resource>
|
||||||
|
<version.maven.resources>3.1.0</version.maven.resources>
|
||||||
|
<version.maven.shade>3.2.4</version.maven.shade>
|
||||||
|
<version.maven.source>3.2.0</version.maven.source>
|
||||||
|
<version.maven.surefire>3.0.0-M5</version.maven.surefire>
|
||||||
|
<version.org.jboss.galleon>4.2.8.Final</version.org.jboss.galleon>
|
||||||
|
<version.org.wildfly.galleon-plugins>5.2.1.Final</version.org.wildfly.galleon-plugins>
|
||||||
|
<version.owasp-dependency-check-plugin>6.1.0</version.owasp-dependency-check-plugin>
|
||||||
|
<version.weld-servlet>2.4.8.Final</version.weld-servlet>
|
||||||
|
<version.sonatype.nexus-staging-plugin>1.6.13</version.sonatype.nexus-staging-plugin>
|
||||||
|
|
||||||
|
<!-- versionx -->
|
||||||
|
<versionx.com.puppycrawl.tools.checkstyle>8.32</versionx.com.puppycrawl.tools.checkstyle>
|
||||||
|
<versionx.net.sourceforge.pmd>6.29.0</versionx.net.sourceforge.pmd>
|
||||||
|
|
||||||
|
<!-- configuration properties -->
|
||||||
|
<org.infinispan.attachServerZip>false</org.infinispan.attachServerZip>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>com.github.spotbugs</groupId>
|
||||||
|
<artifactId>spotbugs-maven-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.owasp</groupId>
|
||||||
|
<artifactId>dependency-check-maven</artifactId>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.sonatype.plugins</groupId>
|
||||||
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||||||
|
<version>${version.sonatype.nexus-staging-plugin}</version>
|
||||||
|
<configuration>
|
||||||
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
||||||
|
<stagingDescription>${infinispan.brand.name} ${project.version} release</stagingDescription>
|
||||||
|
<nexusUrl>${maven.releases.nexus.url}</nexusUrl>
|
||||||
|
<serverId>${maven.releases.repo.id}</serverId>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<version>${version.maven.javadoc}</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>javadoc</id>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
|
<version>${version.maven.gpg}</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>sign-artifacts</id>
|
||||||
|
<phase>verify</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>sign</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<keyname>${infinispan.gpg.key}</keyname>
|
||||||
|
<passphraseServerId>${infinispan.gpg.key}</passphraseServerId>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>community-release</id>
|
||||||
|
<activation>
|
||||||
|
<activeByDefault>false</activeByDefault>
|
||||||
|
</activation>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
|
||||||
|
<profile>
|
||||||
|
<!-- nexus-staging-maven-plugin blocks maven-deploy-plugin -->
|
||||||
|
<id>nexus-staging</id>
|
||||||
|
<activation>
|
||||||
|
<property><name>!skipNexusStaging</name></property>
|
||||||
|
</activation>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.sonatype.plugins</groupId>
|
||||||
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||||||
|
<extensions>false</extensions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
|
||||||
|
</profiles>
|
||||||
|
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,428 @@
|
|||||||
|
<?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>com.fasterxml.jackson</groupId>
|
||||||
|
<artifactId>jackson-parent</artifactId>
|
||||||
|
<!-- note: does NOT change for every version of bom -->
|
||||||
|
<version>2.13</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<artifactId>jackson-bom</artifactId>
|
||||||
|
<name>Jackson BOM</name>
|
||||||
|
<description>Bill of Materials pom for getting full, complete set of compatible versions
|
||||||
|
of Jackson components maintained by FasterXML.com
|
||||||
|
</description>
|
||||||
|
<version>2.13.5</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<modules>
|
||||||
|
<module>base</module> <!-- "It's all about that base 'bout that base..." -->
|
||||||
|
</modules>
|
||||||
|
|
||||||
|
<organization>
|
||||||
|
<name>FasterXML</name>
|
||||||
|
<url>http://fasterxml.com/</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License, Version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>cowtowncoder</id>
|
||||||
|
<name>Tatu Saloranta</name>
|
||||||
|
<email>tatu@fasterxml.com</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
|
<url>https://github.com/FasterXML/jackson-bom</url>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git@github.com:FasterXML/jackson-bom.git</connection>
|
||||||
|
<developerConnection>scm:git:git@github.com:FasterXML/jackson-bom.git</developerConnection>
|
||||||
|
<url>https://github.com/FasterXML/jackson-bom</url>
|
||||||
|
<tag>jackson-bom-2.13.5</tag>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<jackson.version>2.13.5</jackson.version>
|
||||||
|
|
||||||
|
<!-- 25-Sep-2019, tatu: With Jackson 2.x we will release full patch-level versions
|
||||||
|
of annotations BUT they are all identical, content-wise.
|
||||||
|
Given this, annotations could EITHER be `2.11.0` OR `${jackson.version}`.
|
||||||
|
Based on dev feedback, with 2.10 we will do latter. It apparently is less
|
||||||
|
confusing than alternative.
|
||||||
|
-->
|
||||||
|
<jackson.version.annotations>${jackson.version}</jackson.version.annotations>
|
||||||
|
<jackson.version.core>${jackson.version}</jackson.version.core>
|
||||||
|
<jackson.version.databind>${jackson.version}</jackson.version.databind>
|
||||||
|
<jackson.version.dataformat>${jackson.version}</jackson.version.dataformat>
|
||||||
|
<jackson.version.datatype>${jackson.version}</jackson.version.datatype>
|
||||||
|
<jackson.version.jaxrs>${jackson.version}</jackson.version.jaxrs>
|
||||||
|
<jackson.version.jakarta.rs>${jackson.version}</jackson.version.jakarta.rs>
|
||||||
|
<jackson.version.jacksonjr>${jackson.version}</jackson.version.jacksonjr>
|
||||||
|
|
||||||
|
<jackson.version.module>${jackson.version}</jackson.version.module>
|
||||||
|
<jackson.version.module.kotlin>${jackson.version.module}</jackson.version.module.kotlin>
|
||||||
|
<jackson.version.module.scala>${jackson.version.module}</jackson.version.module.scala>
|
||||||
|
<!-- JPMS Library Updates-->
|
||||||
|
<javax.activation.version>1.2.0</javax.activation.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
|
||||||
|
<!-- Core -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
|
<artifactId>jackson-annotations</artifactId>
|
||||||
|
<version>${jackson.version.annotations}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
|
<artifactId>jackson-core</artifactId>
|
||||||
|
<version>${jackson.version.core}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
|
<artifactId>jackson-databind</artifactId>
|
||||||
|
<version>${jackson.version.databind}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Data Formats -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||||
|
<artifactId>jackson-dataformat-avro</artifactId>
|
||||||
|
<version>${jackson.version.dataformat}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||||
|
<artifactId>jackson-dataformat-cbor</artifactId>
|
||||||
|
<version>${jackson.version.dataformat}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||||
|
<artifactId>jackson-dataformat-csv</artifactId>
|
||||||
|
<version>${jackson.version.dataformat}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||||
|
<artifactId>jackson-dataformat-ion</artifactId>
|
||||||
|
<version>${jackson.version.dataformat}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||||
|
<artifactId>jackson-dataformat-properties</artifactId>
|
||||||
|
<version>${jackson.version.dataformat}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||||
|
<artifactId>jackson-dataformat-protobuf</artifactId>
|
||||||
|
<version>${jackson.version.dataformat}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||||
|
<artifactId>jackson-dataformat-smile</artifactId>
|
||||||
|
<version>${jackson.version.dataformat}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency> <!-- Officially added in 2.13.0, beta in 2.12.3 -->
|
||||||
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||||
|
<artifactId>jackson-dataformat-toml</artifactId>
|
||||||
|
<version>${jackson.version.dataformat}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||||
|
<artifactId>jackson-dataformat-xml</artifactId>
|
||||||
|
<version>${jackson.version.dataformat}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||||
|
<artifactId>jackson-dataformat-yaml</artifactId>
|
||||||
|
<version>${jackson.version.dataformat}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Data Types -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-eclipse-collections</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-guava</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- 25-Feb-2021, tatu: as per [datatype-hibernate#139], h3 dropped from 2.13 -->
|
||||||
|
<!--
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-hibernate3</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-hibernate4</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-hibernate5</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency> <!-- Added in 2.13 -->
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-hibernate5-jakarta</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-hppc</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency> <!-- since 2.12.2 -->
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-jakarta-jsonp</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-jaxrs</artifactId>
|
||||||
|
<!-- Should this follow datatype or JAX-RS version info?
|
||||||
|
-->
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-joda</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency> <!-- since 2.11 -->
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-joda-money</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-jdk8</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-json-org</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-jsr353</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||||
|
<artifactId>jackson-datatype-pcollections</artifactId>
|
||||||
|
<version>${jackson.version.datatype}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- JAX-RS -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
||||||
|
<artifactId>jackson-jaxrs-base</artifactId>
|
||||||
|
<version>${jackson.version.jaxrs}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
||||||
|
<artifactId>jackson-jaxrs-cbor-provider</artifactId>
|
||||||
|
<version>${jackson.version.jaxrs}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
||||||
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
||||||
|
<version>${jackson.version.jaxrs}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
||||||
|
<artifactId>jackson-jaxrs-smile-provider</artifactId>
|
||||||
|
<version>${jackson.version.jaxrs}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
||||||
|
<artifactId>jackson-jaxrs-xml-provider</artifactId>
|
||||||
|
<version>${jackson.version.jaxrs}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
||||||
|
<artifactId>jackson-jaxrs-yaml-provider</artifactId>
|
||||||
|
<version>${jackson.version.jaxrs}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Jakarta-RS (2.13+) -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
|
||||||
|
<artifactId>jackson-jakarta-rs-base</artifactId>
|
||||||
|
<version>${jackson.version.jakarta.rs}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
|
||||||
|
<artifactId>jackson-jakarta-rs-cbor-provider</artifactId>
|
||||||
|
<version>${jackson.version.jakarta.rs}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
|
||||||
|
<artifactId>jackson-jakarta-rs-json-provider</artifactId>
|
||||||
|
<version>${jackson.version.jakarta.rs}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
|
||||||
|
<artifactId>jackson-jakarta-rs-smile-provider</artifactId>
|
||||||
|
<version>${jackson.version.jakarta.rs}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
|
||||||
|
<artifactId>jackson-jakarta-rs-xml-provider</artifactId>
|
||||||
|
<version>${jackson.version.jakarta.rs}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
|
||||||
|
<artifactId>jackson-jakarta-rs-yaml-provider</artifactId>
|
||||||
|
<version>${jackson.version.jakarta.rs}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Jackson Jr. -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jr</groupId>
|
||||||
|
<artifactId>jackson-jr-all</artifactId>
|
||||||
|
<version>${jackson.version.jacksonjr}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jr</groupId>
|
||||||
|
<artifactId>jackson-jr-annotation-support</artifactId>
|
||||||
|
<version>${jackson.version.jacksonjr}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jr</groupId>
|
||||||
|
<artifactId>jackson-jr-objects</artifactId>
|
||||||
|
<version>${jackson.version.jacksonjr}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jr</groupId>
|
||||||
|
<artifactId>jackson-jr-retrofit2</artifactId>
|
||||||
|
<version>${jackson.version.jacksonjr}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.jr</groupId>
|
||||||
|
<artifactId>jackson-jr-stree</artifactId>
|
||||||
|
<version>${jackson.version.jacksonjr}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Modules, basic -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-afterburner</artifactId>
|
||||||
|
<version>${jackson.version.module}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-blackbird</artifactId>
|
||||||
|
<version>${jackson.version.module}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-guice</artifactId>
|
||||||
|
<version>${jackson.version.module}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-jaxb-annotations</artifactId>
|
||||||
|
<version>${jackson.version.module}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency> <!-- 2.13+: Jakarta-bind too [modules-base#130] -->
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-jakarta-xmlbind-annotations</artifactId>
|
||||||
|
<version>${jackson.version.module}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-jsonSchema</artifactId>
|
||||||
|
<version>${jackson.version.module}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-kotlin</artifactId>
|
||||||
|
<version>${jackson.version.module.kotlin}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-mrbean</artifactId>
|
||||||
|
<version>${jackson.version.module}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency> <!-- Added in 2.13.0 -->
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-no-ctor-deser</artifactId>
|
||||||
|
<version>${jackson.version.module}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-osgi</artifactId>
|
||||||
|
<version>${jackson.version.module}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-parameter-names</artifactId>
|
||||||
|
<version>${jackson.version.module}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-paranamer</artifactId>
|
||||||
|
<version>${jackson.version.module}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Language Modules -->
|
||||||
|
|
||||||
|
<!-- 21-Nov-2020, tatu: Scala 2.10 support dropped in Jackson 2.12 -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-scala_2.11</artifactId>
|
||||||
|
<version>${jackson.version.module.scala}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-scala_2.12</artifactId>
|
||||||
|
<version>${jackson.version.module.scala}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-scala_2.13</artifactId>
|
||||||
|
<version>${jackson.version.module.scala}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.fasterxml.jackson.module</groupId>
|
||||||
|
<artifactId>jackson-module-scala_3</artifactId>
|
||||||
|
<version>${jackson.version.module.scala}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
|
||||||
|
<!-- Alas, need to include snapshot reference since otherwise can not find
|
||||||
|
snapshot of parent... -->
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>sonatype-nexus-snapshots</id>
|
||||||
|
<name>Sonatype Nexus Snapshots</name>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||||
|
<releases><enabled>false</enabled></releases>
|
||||||
|
<snapshots><enabled>true</enabled></snapshots>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,191 @@
|
|||||||
|
<?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/maven-v4_0_0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>com.fasterxml</groupId>
|
||||||
|
<artifactId>oss-parent</artifactId>
|
||||||
|
<version>43</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<groupId>com.fasterxml.jackson</groupId>
|
||||||
|
<artifactId>jackson-parent</artifactId>
|
||||||
|
<version>2.13</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>Jackson parent poms</name>
|
||||||
|
<description>Parent pom for all Jackson components</description>
|
||||||
|
<url>http://github.com/FasterXML/</url>
|
||||||
|
<organization>
|
||||||
|
<name>FasterXML</name>
|
||||||
|
<url>http://fasterxml.com/</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>cowtowncoder</id>
|
||||||
|
<name>Tatu Saloranta</name>
|
||||||
|
<email>tatu@fasterxml.com</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git@github.com:FasterXML/jackson-parent.git</connection>
|
||||||
|
<developerConnection>scm:git:git@github.com:FasterXML/jackson-parent.git</developerConnection>
|
||||||
|
<url>http://github.com/FasterXML/jackson-parent</url>
|
||||||
|
<tag>jackson-parent-2.13</tag>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<!-- 02-Oct-2015, tatu: Jackson 2.4 and above are Java 6 (earlier versions Java 5);
|
||||||
|
Jackson 2.7 and above Java 7 (with exception of `jackson-core`/`jackson-annotations` still Java 6),
|
||||||
|
-->
|
||||||
|
<!-- 09-Jan-2021, tatu: Jackson 2.13 finally raises baseline to Java 8, with continuing
|
||||||
|
exception fo `jackson-core`/`jackson-annotations` as Java 6 -->
|
||||||
|
<javac.src.version>1.8</javac.src.version>
|
||||||
|
<javac.target.version>1.8</javac.target.version>
|
||||||
|
<javac.debuglevel>lines,source,vars</javac.debuglevel>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
| For automatically generating PackageVersion.java. Your child pom.xml must define
|
||||||
|
| packageVersion.dir and packageVersion.package, and must set the phase of the
|
||||||
|
| process-packageVersion execution of maven-replacer-plugin to 'generate-sources'.
|
||||||
|
-->
|
||||||
|
<packageVersion.template.input>${basedir}/src/main/java/${packageVersion.dir}/PackageVersion.java.in</packageVersion.template.input>
|
||||||
|
<packageVersion.template.output>${generatedSourcesDir}/${packageVersion.dir}/PackageVersion.java</packageVersion.template.output>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<!-- 17-Sep-2021, tatu: Used to have junit prior to Jackson 2.13, removed due to
|
||||||
|
[jackson-bom#43] issue
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Alas, need to include snapshot reference since otherwise can not find
|
||||||
|
snapshot of parent... -->
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>sonatype-nexus-snapshots</id>
|
||||||
|
<name>Sonatype Nexus Snapshots</name>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||||
|
<releases><enabled>false</enabled></releases>
|
||||||
|
<snapshots><enabled>true</enabled></snapshots>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
|
||||||
|
<!-- Jackson has stricter enforced requirements than parent pom -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>enforce-java</id>
|
||||||
|
<phase>validate</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>enforce</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<rules>
|
||||||
|
<requireMavenVersion>
|
||||||
|
<version>[3.6,)</version>
|
||||||
|
<message>[ERROR] The currently supported version of Maven is 3.6 or higher</message>
|
||||||
|
</requireMavenVersion>
|
||||||
|
<requirePluginVersions>
|
||||||
|
<banLatest>true</banLatest>
|
||||||
|
<banRelease>true</banRelease>
|
||||||
|
<banSnapshots>true</banSnapshots>
|
||||||
|
<phases>clean,deploy,site</phases>
|
||||||
|
<message>[ERROR] Best Practice is to always define plugin versions!</message>
|
||||||
|
</requirePluginVersions>
|
||||||
|
</rules>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<!-- use of replacer plug-in specific to Jackson -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
||||||
|
<artifactId>replacer</artifactId>
|
||||||
|
<version>${version.plugin.replacer}</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>process-packageVersion</id>
|
||||||
|
<goals>
|
||||||
|
<goal>replace</goal>
|
||||||
|
</goals>
|
||||||
|
<!--
|
||||||
|
| We explicitly omit 'phase' here so child poms can opt in to
|
||||||
|
| generating their PackageVersion.java file.
|
||||||
|
|
|
||||||
|
| If your child pom wants a PackageVersion.java file, define
|
||||||
|
| the 'packageVersion.dir' and 'packageVersion.package' properties
|
||||||
|
| and include the commented-out section in your child pom's plugin
|
||||||
|
| for this execution ID.
|
||||||
|
<phase>generate-sources</phase>
|
||||||
|
-->
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
<configuration>
|
||||||
|
<file>${packageVersion.template.input}</file>
|
||||||
|
<outputFile>${packageVersion.template.output}</outputFile>
|
||||||
|
<replacements>
|
||||||
|
<replacement>
|
||||||
|
<passwordResetToken>@package@</passwordResetToken>
|
||||||
|
<value>${packageVersion.package}</value>
|
||||||
|
</replacement>
|
||||||
|
<replacement>
|
||||||
|
<passwordResetToken>@projectversion@</passwordResetToken>
|
||||||
|
<value>${project.version}</value>
|
||||||
|
</replacement>
|
||||||
|
<replacement>
|
||||||
|
<passwordResetToken>@projectgroupid@</passwordResetToken>
|
||||||
|
<value>${project.groupId}</value>
|
||||||
|
</replacement>
|
||||||
|
<replacement>
|
||||||
|
<passwordResetToken>@projectartifactid@</passwordResetToken>
|
||||||
|
<value>${project.artifactId}</value>
|
||||||
|
</replacement>
|
||||||
|
</replacements>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<!-- Work around Eclipse incompatibility (http://code.google.com/p/maven-replacer-plugin/issues/detail?id=66) -->
|
||||||
|
<groupId>org.eclipse.m2e</groupId>
|
||||||
|
<artifactId>lifecycle-mapping</artifactId>
|
||||||
|
<version>1.0.0</version>
|
||||||
|
<configuration>
|
||||||
|
<lifecycleMappingMetadata>
|
||||||
|
<pluginExecutions>
|
||||||
|
<pluginExecution>
|
||||||
|
<pluginExecutionFilter>
|
||||||
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
||||||
|
<artifactId>replacer</artifactId>
|
||||||
|
<versionRange>[${version.plugin.replacer},)</versionRange>
|
||||||
|
<goals>
|
||||||
|
<goal>replace</goal>
|
||||||
|
</goals>
|
||||||
|
</pluginExecutionFilter>
|
||||||
|
<action>
|
||||||
|
<execute>
|
||||||
|
<runOnIncremental>false</runOnIncremental>
|
||||||
|
</execute>
|
||||||
|
</action>
|
||||||
|
</pluginExecution>
|
||||||
|
</pluginExecutions>
|
||||||
|
</lifecycleMappingMetadata>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,110 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
Copyright DataStax, Inc.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
|
||||||
|
-->
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>com.datastax.oss</groupId>
|
||||||
|
<artifactId>java-driver-bom</artifactId>
|
||||||
|
<version>4.14.1</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>DataStax Java driver for Apache Cassandra(R) - Bill Of Materials</name>
|
||||||
|
<description>A driver for Apache Cassandra(R) 2.1+ that works exclusively with the Cassandra Query Language version 3 (CQL3) and Cassandra's native protocol versions 3 and above.</description>
|
||||||
|
<url>https://github.com/datastax/java-driver/java-driver-bom</url>
|
||||||
|
<inceptionYear>2017</inceptionYear>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache 2</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
<comments>Apache License Version 2.0</comments>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<name>Various</name>
|
||||||
|
<organization>DataStax</organization>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git@github.com:datastax/java-driver.git/java-driver-bom</connection>
|
||||||
|
<developerConnection>scm:git:git@github.com:datastax/java-driver.git/java-driver-bom</developerConnection>
|
||||||
|
<tag>4.14.1</tag>
|
||||||
|
<url>https://github.com/datastax/java-driver/java-driver-bom</url>
|
||||||
|
</scm>
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<id>ossrh</id>
|
||||||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||||
|
</repository>
|
||||||
|
</distributionManagement>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.datastax.oss</groupId>
|
||||||
|
<artifactId>java-driver-core</artifactId>
|
||||||
|
<version>4.14.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.datastax.oss</groupId>
|
||||||
|
<artifactId>java-driver-core-shaded</artifactId>
|
||||||
|
<version>4.14.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.datastax.oss</groupId>
|
||||||
|
<artifactId>java-driver-mapper-processor</artifactId>
|
||||||
|
<version>4.14.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.datastax.oss</groupId>
|
||||||
|
<artifactId>java-driver-mapper-runtime</artifactId>
|
||||||
|
<version>4.14.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.datastax.oss</groupId>
|
||||||
|
<artifactId>java-driver-query-builder</artifactId>
|
||||||
|
<version>4.14.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.datastax.oss</groupId>
|
||||||
|
<artifactId>java-driver-test-infra</artifactId>
|
||||||
|
<version>4.14.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.datastax.oss</groupId>
|
||||||
|
<artifactId>java-driver-metrics-micrometer</artifactId>
|
||||||
|
<version>4.14.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.datastax.oss</groupId>
|
||||||
|
<artifactId>java-driver-metrics-microprofile</artifactId>
|
||||||
|
<version>4.14.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.datastax.oss</groupId>
|
||||||
|
<artifactId>native-protocol</artifactId>
|
||||||
|
<version>1.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.datastax.oss</groupId>
|
||||||
|
<artifactId>java-driver-shaded-guava</artifactId>
|
||||||
|
<version>25.1-jre-graal-sub-1</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,435 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
Copyright (c) 2013, 2021 Oracle and/or its affiliates. All rights reserved.
|
||||||
|
|
||||||
|
This program and the accompanying materials are made available under the
|
||||||
|
terms of the Eclipse Public License v. 2.0, which is available at
|
||||||
|
http://www.eclipse.org/legal/epl-2.0.
|
||||||
|
|
||||||
|
This Source Code may also be made available under the following Secondary
|
||||||
|
Licenses when the conditions for such availability set forth in the
|
||||||
|
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
|
||||||
|
version 2 with the GNU Classpath Exception, which is available at
|
||||||
|
https://www.gnu.org/software/classpath/license.html.
|
||||||
|
|
||||||
|
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<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/maven-v4_0_0.xsd">
|
||||||
|
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>org.eclipse.ee4j</groupId>
|
||||||
|
<artifactId>project</artifactId>
|
||||||
|
<version>1.0.6</version>
|
||||||
|
<relativePath/>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<groupId>org.glassfish.jersey</groupId>
|
||||||
|
<artifactId>jersey-bom</artifactId>
|
||||||
|
<version>2.35</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>jersey-bom</name>
|
||||||
|
|
||||||
|
<description>Jersey Bill of Materials (BOM)</description>
|
||||||
|
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.core</groupId>
|
||||||
|
<artifactId>jersey-common</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.core</groupId>
|
||||||
|
<artifactId>jersey-client</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.core</groupId>
|
||||||
|
<artifactId>jersey-server</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.bundles</groupId>
|
||||||
|
<artifactId>jaxrs-ri</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.connectors</groupId>
|
||||||
|
<artifactId>jersey-apache-connector</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.connectors</groupId>
|
||||||
|
<artifactId>jersey-helidon-connector</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.connectors</groupId>
|
||||||
|
<artifactId>jersey-grizzly-connector</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.connectors</groupId>
|
||||||
|
<artifactId>jersey-jetty-connector</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.connectors</groupId>
|
||||||
|
<artifactId>jersey-jdk-connector</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.connectors</groupId>
|
||||||
|
<artifactId>jersey-netty-connector</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||||||
|
<artifactId>jersey-container-jetty-http</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||||||
|
<artifactId>jersey-container-grizzly2-http</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||||||
|
<artifactId>jersey-container-grizzly2-servlet</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||||||
|
<artifactId>jersey-container-jetty-servlet</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||||||
|
<artifactId>jersey-container-jdk-http</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||||||
|
<artifactId>jersey-container-netty-http</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||||||
|
<artifactId>jersey-container-servlet</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||||||
|
<artifactId>jersey-container-servlet-core</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.containers</groupId>
|
||||||
|
<artifactId>jersey-container-simple-http</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.containers.glassfish</groupId>
|
||||||
|
<artifactId>jersey-gf-ejb</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-bean-validation</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-entity-filtering</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-metainf-services</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext.microprofile</groupId>
|
||||||
|
<artifactId>jersey-mp-config</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-mvc</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-mvc-bean-validation</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-mvc-freemarker</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-mvc-jsp</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-mvc-mustache</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-proxy-client</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-servlet-portability</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-spring4</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-spring5</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-declarative-linking</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext</groupId>
|
||||||
|
<artifactId>jersey-wadl-doclet</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
||||||
|
<artifactId>jersey-weld2-se</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
||||||
|
<artifactId>jersey-cdi1x</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
||||||
|
<artifactId>jersey-cdi1x-transaction</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
||||||
|
<artifactId>jersey-cdi1x-validation</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
||||||
|
<artifactId>jersey-cdi1x-servlet</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
||||||
|
<artifactId>jersey-cdi1x-ban-custom-hk2-binding</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext.cdi</groupId>
|
||||||
|
<artifactId>jersey-cdi-rs-inject</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext.rx</groupId>
|
||||||
|
<artifactId>jersey-rx-client-guava</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext.rx</groupId>
|
||||||
|
<artifactId>jersey-rx-client-rxjava</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext.rx</groupId>
|
||||||
|
<artifactId>jersey-rx-client-rxjava2</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.ext.microprofile</groupId>
|
||||||
|
<artifactId>jersey-mp-rest-client</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||||||
|
<artifactId>jersey-media-jaxb</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||||||
|
<artifactId>jersey-media-json-jackson</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<!--
|
||||||
|
Legacy Jackson1 is removed from bom pom, as obsolete.
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||||||
|
<artifactId>jersey-media-json-jackson1</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
-->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||||||
|
<artifactId>jersey-media-json-jettison</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||||||
|
<artifactId>jersey-media-json-processing</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||||||
|
<artifactId>jersey-media-json-binding</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||||||
|
<artifactId>jersey-media-kryo</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||||||
|
<artifactId>jersey-media-moxy</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||||||
|
<artifactId>jersey-media-multipart</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.media</groupId>
|
||||||
|
<artifactId>jersey-media-sse</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.security</groupId>
|
||||||
|
<artifactId>oauth1-client</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.security</groupId>
|
||||||
|
<artifactId>oauth1-server</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.security</groupId>
|
||||||
|
<artifactId>oauth1-signature</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.security</groupId>
|
||||||
|
<artifactId>oauth2-client</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.inject</groupId>
|
||||||
|
<artifactId>jersey-hk2</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.inject</groupId>
|
||||||
|
<artifactId>jersey-cdi2-se</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.test-framework</groupId>
|
||||||
|
<artifactId>jersey-test-framework-core</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||||||
|
<artifactId>jersey-test-framework-provider-bundle</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||||||
|
<artifactId>jersey-test-framework-provider-external</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||||||
|
<artifactId>jersey-test-framework-provider-grizzly2</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||||||
|
<artifactId>jersey-test-framework-provider-inmemory</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||||||
|
<artifactId>jersey-test-framework-provider-jdk-http</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||||||
|
<artifactId>jersey-test-framework-provider-simple</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.test-framework.providers</groupId>
|
||||||
|
<artifactId>jersey-test-framework-provider-jetty</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.glassfish.jersey.test-framework</groupId>
|
||||||
|
<artifactId>jersey-test-framework-util</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.glassfish.copyright</groupId>
|
||||||
|
<artifactId>glassfish-copyright-maven-plugin</artifactId>
|
||||||
|
<version>2.4</version>
|
||||||
|
<inherited>true</inherited>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<version>3.7.1</version>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>project-info</id>
|
||||||
|
<activation>
|
||||||
|
<activeByDefault>false</activeByDefault>
|
||||||
|
</activation>
|
||||||
|
|
||||||
|
<!-- placeholder required for site:stage -->
|
||||||
|
<distributionManagement>
|
||||||
|
<site>
|
||||||
|
<id>localhost</id>
|
||||||
|
<url>http://localhost</url>
|
||||||
|
</site>
|
||||||
|
</distributionManagement>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,481 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-bom</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>Jetty :: Bom</name>
|
||||||
|
<description>Jetty BOM artifact</description>
|
||||||
|
<url>https://eclipse.org/jetty</url>
|
||||||
|
<inceptionYear>1995</inceptionYear>
|
||||||
|
<organization>
|
||||||
|
<name>Webtide</name>
|
||||||
|
<url>https://webtide.com</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache Software License - Version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
|
||||||
|
</license>
|
||||||
|
<license>
|
||||||
|
<name>Eclipse Public License - Version 1.0</name>
|
||||||
|
<url>https://www.eclipse.org/org/documents/epl-v10.php</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>gregw</id>
|
||||||
|
<name>Greg Wilkins</name>
|
||||||
|
<email>gregw@webtide.com</email>
|
||||||
|
<organization>Webtide, LLC</organization>
|
||||||
|
<organizationUrl>https://webtide.com</organizationUrl>
|
||||||
|
<timezone>10</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>janb</id>
|
||||||
|
<name>Jan Bartel</name>
|
||||||
|
<email>janb@webtide.com</email>
|
||||||
|
<organization>Webtide, LLC</organization>
|
||||||
|
<organizationUrl>https://webtide.com</organizationUrl>
|
||||||
|
<timezone>10</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jesse</id>
|
||||||
|
<name>Jesse McConnell</name>
|
||||||
|
<email>jesse.mcconnell@gmail.com</email>
|
||||||
|
<organization>Webtide, LLC</organization>
|
||||||
|
<organizationUrl>https://webtide.com</organizationUrl>
|
||||||
|
<timezone>-6</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>joakime</id>
|
||||||
|
<name>Joakim Erdfelt</name>
|
||||||
|
<email>joakim.erdfelt@gmail.com</email>
|
||||||
|
<organization>Webtide, LLC</organization>
|
||||||
|
<organizationUrl>https://webtide.com</organizationUrl>
|
||||||
|
<timezone>-7</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>sbordet</id>
|
||||||
|
<name>Simone Bordet</name>
|
||||||
|
<email>simone.bordet@gmail.com</email>
|
||||||
|
<organization>Webtide, LLC</organization>
|
||||||
|
<organizationUrl>https://webtide.com</organizationUrl>
|
||||||
|
<timezone>1</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>djencks</id>
|
||||||
|
<name>David Jencks</name>
|
||||||
|
<email>david.a.jencks@gmail.com</email>
|
||||||
|
<organization>IBM</organization>
|
||||||
|
<timezone>-8</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>olamy</id>
|
||||||
|
<name>Olivier Lamy</name>
|
||||||
|
<email>oliver.lamy@gmail.com</email>
|
||||||
|
<organization>Webtide, LLC</organization>
|
||||||
|
<organizationUrl>https://webtide.com</organizationUrl>
|
||||||
|
<timezone>Australia/Brisbane</timezone>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>lorban</id>
|
||||||
|
<name>Ludovic Orban</name>
|
||||||
|
<email>lorban@bitronix.be</email>
|
||||||
|
<organization>Webtide, LLC</organization>
|
||||||
|
<organizationUrl>https://webtide.com</organizationUrl>
|
||||||
|
<timezone>1</timezone>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<mailingLists>
|
||||||
|
<mailingList>
|
||||||
|
<name>Jetty Developer Mailing List</name>
|
||||||
|
<subscribe>https://dev.eclipse.org/mailman/listinfo/jetty-dev</subscribe>
|
||||||
|
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/jetty-dev</unsubscribe>
|
||||||
|
<archive>https://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html</archive>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Jetty Commit Mailing List</name>
|
||||||
|
<subscribe>https://dev.eclipse.org/mailman/listinfo/jetty-commit</subscribe>
|
||||||
|
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/jetty-commit</unsubscribe>
|
||||||
|
<archive>https://dev.eclipse.org/mhonarc/lists/jetty-commit/maillist.html</archive>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Jetty Users Mailing List</name>
|
||||||
|
<subscribe>https://dev.eclipse.org/mailman/listinfo/jetty-users</subscribe>
|
||||||
|
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/jetty-users</unsubscribe>
|
||||||
|
<archive>https://dev.eclipse.org/mhonarc/lists/jetty-users/maillist.html</archive>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>Jetty Announce Mailing List</name>
|
||||||
|
<subscribe>https://dev.eclipse.org/mailman/listinfo/jetty-announce</subscribe>
|
||||||
|
<unsubscribe>https://dev.eclipse.org/mailman/listinfo/jetty-announce</unsubscribe>
|
||||||
|
<archive>https://dev.eclipse.org/mhonarc/lists/jetty-announce/maillist.html</archive>
|
||||||
|
</mailingList>
|
||||||
|
</mailingLists>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:https://github.com/eclipse/jetty.project.git/jetty-bom</connection>
|
||||||
|
<developerConnection>scm:git:git@github.com:eclipse/jetty.project.git/jetty-bom</developerConnection>
|
||||||
|
<url>https://github.com/eclipse/jetty.project/jetty-bom</url>
|
||||||
|
</scm>
|
||||||
|
<issueManagement>
|
||||||
|
<system>github</system>
|
||||||
|
<url>https://github.com/eclipse/jetty.project/issues</url>
|
||||||
|
</issueManagement>
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<id>oss.sonatype.org</id>
|
||||||
|
<name>Jetty Staging Repository</name>
|
||||||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||||
|
</repository>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>oss.sonatype.org</id>
|
||||||
|
<name>Jetty Snapshot Repository</name>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/jetty-snapshots/</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
<site>
|
||||||
|
<id>jetty.eclipse.website</id>
|
||||||
|
<url>scp://build.eclipse.org:/home/data/httpd/download.eclipse.org/jetty/9.4.53.v20231009/jetty-bom/</url>
|
||||||
|
</site>
|
||||||
|
</distributionManagement>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>apache-jsp</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>apache-jstl</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-alpn-client</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-alpn-java-client</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-alpn-java-server</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-alpn-openjdk8-client</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-alpn-openjdk8-server</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-alpn-conscrypt-client</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-alpn-conscrypt-server</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-alpn-server</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-annotations</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-ant</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-client</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-continuation</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-deploy</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-distribution</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
<type>zip</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-distribution</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
<type>tar.gz</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
||||||
|
<artifactId>fcgi-client</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.fcgi</groupId>
|
||||||
|
<artifactId>fcgi-server</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.gcloud</groupId>
|
||||||
|
<artifactId>jetty-gcloud-session-manager</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-home</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
<type>zip</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-home</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
<type>tar.gz</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-http</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
|
<artifactId>http2-client</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
|
<artifactId>http2-common</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
|
<artifactId>http2-hpack</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
|
<artifactId>http2-http-client-transport</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.http2</groupId>
|
||||||
|
<artifactId>http2-server</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-http-spi</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>infinispan-common</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>infinispan-remote-query</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>infinispan-embedded-query</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-hazelcast</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-io</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-jaas</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-jaspi</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-jmx</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-jndi</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.memcached</groupId>
|
||||||
|
<artifactId>jetty-memcached-sessions</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-nosql</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
||||||
|
<artifactId>jetty-osgi-boot</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
||||||
|
<artifactId>jetty-osgi-boot-jsp</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
||||||
|
<artifactId>jetty-osgi-boot-warurl</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.osgi</groupId>
|
||||||
|
<artifactId>jetty-httpservice</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-plus</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-proxy</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-quickstart</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-rewrite</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-security</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-openid</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-server</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-servlet</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-servlets</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-spring</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-unixsocket</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-util</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-util-ajax</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-webapp</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
|
<artifactId>javax-websocket-client-impl</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
|
<artifactId>javax-websocket-server-impl</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
|
<artifactId>websocket-api</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
|
<artifactId>websocket-client</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
|
<artifactId>websocket-common</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
|
<artifactId>websocket-server</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty.websocket</groupId>
|
||||||
|
<artifactId>websocket-servlet</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.jetty</groupId>
|
||||||
|
<artifactId>jetty-xml</artifactId>
|
||||||
|
<version>9.4.53.v20231009</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,159 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<!-- This module was also published with a richer model, Gradle metadata, -->
|
||||||
|
<!-- which should be used instead. Do not delete the following line which -->
|
||||||
|
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
||||||
|
<!-- that they should prefer consuming it instead. -->
|
||||||
|
<!-- do_not_remove: published-with-gradle-metadata -->
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.junit</groupId>
|
||||||
|
<artifactId>junit-bom</artifactId>
|
||||||
|
<version>5.8.2</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>JUnit 5 (Bill of Materials)</name>
|
||||||
|
<description>This Bill of Materials POM can be used to ease dependency management when referencing multiple JUnit artifacts using Gradle or Maven.</description>
|
||||||
|
<url>https://junit.org/junit5/</url>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Eclipse Public License v2.0</name>
|
||||||
|
<url>https://www.eclipse.org/legal/epl-v20.html</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>bechte</id>
|
||||||
|
<name>Stefan Bechtold</name>
|
||||||
|
<email>stefan.bechtold@me.com</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jlink</id>
|
||||||
|
<name>Johannes Link</name>
|
||||||
|
<email>business@johanneslink.net</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>marcphilipp</id>
|
||||||
|
<name>Marc Philipp</name>
|
||||||
|
<email>mail@marcphilipp.de</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>mmerdes</id>
|
||||||
|
<name>Matthias Merdes</name>
|
||||||
|
<email>matthias.merdes@heidelpay.com</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>sbrannen</id>
|
||||||
|
<name>Sam Brannen</name>
|
||||||
|
<email>sam@sambrannen.com</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>sormuras</id>
|
||||||
|
<name>Christian Stein</name>
|
||||||
|
<email>sormuras@gmail.com</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>juliette-derancourt</id>
|
||||||
|
<name>Juliette de Rancourt</name>
|
||||||
|
<email>derancourt.juliette@gmail.com</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/junit-team/junit5.git</connection>
|
||||||
|
<developerConnection>scm:git:git://github.com/junit-team/junit5.git</developerConnection>
|
||||||
|
<url>https://github.com/junit-team/junit5</url>
|
||||||
|
</scm>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter</artifactId>
|
||||||
|
<version>5.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-api</artifactId>
|
||||||
|
<version>5.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-engine</artifactId>
|
||||||
|
<version>5.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-migrationsupport</artifactId>
|
||||||
|
<version>5.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.jupiter</groupId>
|
||||||
|
<artifactId>junit-jupiter-params</artifactId>
|
||||||
|
<version>5.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-commons</artifactId>
|
||||||
|
<version>1.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-console</artifactId>
|
||||||
|
<version>1.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-engine</artifactId>
|
||||||
|
<version>1.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-jfr</artifactId>
|
||||||
|
<version>1.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-launcher</artifactId>
|
||||||
|
<version>1.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-reporting</artifactId>
|
||||||
|
<version>1.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-runner</artifactId>
|
||||||
|
<version>1.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-suite</artifactId>
|
||||||
|
<version>1.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-suite-api</artifactId>
|
||||||
|
<version>1.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-suite-commons</artifactId>
|
||||||
|
<version>1.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-suite-engine</artifactId>
|
||||||
|
<version>1.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.platform</groupId>
|
||||||
|
<artifactId>junit-platform-testkit</artifactId>
|
||||||
|
<version>1.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.junit.vintage</groupId>
|
||||||
|
<artifactId>junit-vintage-engine</artifactId>
|
||||||
|
<version>5.8.2</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,230 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
||||||
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
|
<artifactId>kotlin-bom</artifactId>
|
||||||
|
<version>1.6.21</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<!-- No parent to avoid accidentally inheriting parent's dependencyManagement section -->
|
||||||
|
|
||||||
|
<name>Kotlin Libraries bill-of-materials</name>
|
||||||
|
<description>Kotlin is a statically typed programming language that compiles to JVM byte codes and JavaScript</description>
|
||||||
|
<url>https://kotlinlang.org/</url>
|
||||||
|
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
<comments>A business-friendly OSS license</comments>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<url>https://github.com/JetBrains/kotlin</url>
|
||||||
|
<connection>scm:git:https://github.com/JetBrains/kotlin.git</connection>
|
||||||
|
<developerConnection>scm:git:https://github.com/JetBrains/kotlin.git</developerConnection>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>JetBrains</id>
|
||||||
|
<name>JetBrains Team</name>
|
||||||
|
<organization>JetBrains</organization>
|
||||||
|
<organizationUrl>https://www.jetbrains.com</organizationUrl>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<!--
|
||||||
|
All dependencies listed in this pom will have version same as the version of this pom.
|
||||||
|
|
||||||
|
This property is local to this project,
|
||||||
|
it isn't affected by the same named property in a consumer project,
|
||||||
|
neither it is visible in the consumer project.
|
||||||
|
-->
|
||||||
|
<kotlin.version>${project.version}</kotlin.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<!-- Standard Library -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-stdlib</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-stdlib-jdk7</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-stdlib-js</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-stdlib-common</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Reflection Library -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-reflect</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- OSGI -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-osgi-bundle</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- kotlin.test -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-test</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-test-junit</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-test-junit5</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-test-testng</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-test-js</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-test-common</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-test-annotations-common</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Scripting -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-main-kts</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-script-runtime</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-script-util</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-scripting-common</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-scripting-jvm</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-scripting-jvm-host</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-scripting-ide-services</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Compiler dependency required by scripting -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-compiler</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-compiler-embeddable</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>kotlin-daemon-client</artifactId>
|
||||||
|
<version>${kotlin.version}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<id>${deploy-repo}</id>
|
||||||
|
<url>${deploy-url}</url>
|
||||||
|
</repository>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>sonatype-nexus-staging</id>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>sign-artifacts</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
|
<version>1.6</version>
|
||||||
|
<configuration>
|
||||||
|
<passphrase>${kotlin.key.passphrase}</passphrase>
|
||||||
|
<keyname>${kotlin.key.name}</keyname>
|
||||||
|
<homedir>../../.gnupg</homedir>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>sign-artifacts</id>
|
||||||
|
<phase>verify</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>sign</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<gpgArguments>
|
||||||
|
<arg>--pinentry-mode</arg>
|
||||||
|
<arg>loopback</arg>
|
||||||
|
</gpgArguments>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,119 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-bom</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>kotlinx-coroutines-bom</name>
|
||||||
|
<description>Coroutines support libraries for Kotlin</description>
|
||||||
|
<url>https://github.com/Kotlin/kotlinx.coroutines</url>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>JetBrains</id>
|
||||||
|
<name>JetBrains Team</name>
|
||||||
|
<organization>JetBrains</organization>
|
||||||
|
<organizationUrl>https://www.jetbrains.com</organizationUrl>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<url>https://github.com/Kotlin/kotlinx.coroutines</url>
|
||||||
|
</scm>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-android</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-core-jvm</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-core</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-debug</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-guava</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-javafx</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-jdk8</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-jdk9</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-play-services</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-reactive</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-reactor</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-rx2</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-rx3</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-slf4j</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-swing</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-test-jvm</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-test</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,86 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!--
|
||||||
|
~ Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
~ or more contributor license agreements. See the NOTICE file
|
||||||
|
~ distributed with this work for additional information
|
||||||
|
~ regarding copyright ownership. The ASF licenses this file
|
||||||
|
~ to you under the Apache License, Version 2.0 (the
|
||||||
|
~ "License"); you may not use this file except in compliance
|
||||||
|
~ with the License. You may obtain a copy of the License at
|
||||||
|
~
|
||||||
|
~ https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
~
|
||||||
|
~ Unless required by applicable law or agreed to in writing,
|
||||||
|
~ software distributed under the License is distributed on an
|
||||||
|
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||||
|
~ KIND, either express or implied. See the License for the
|
||||||
|
~ specific language governing permissions and limitations
|
||||||
|
~ under the License.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<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>org.apache</groupId>
|
||||||
|
<artifactId>apache</artifactId>
|
||||||
|
<version>24</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<groupId>org.apache.logging</groupId>
|
||||||
|
<artifactId>logging-parent</artifactId>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<version>5</version>
|
||||||
|
|
||||||
|
<name>Apache Logging Services</name>
|
||||||
|
<description>
|
||||||
|
Parent pom for Apache Logging Services projects.
|
||||||
|
</description>
|
||||||
|
<url>https://logging.apache.org/</url>
|
||||||
|
<inceptionYear>1999</inceptionYear>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<!-- All Apache Logging projects currently have a baseline JDK version of 1.8 -->
|
||||||
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
|
<!-- Support reproducible builds with a static build timestamp -->
|
||||||
|
<project.build.outputTimestamp>1640651760</project.build.outputTimestamp>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:https://gitbox.apache.org/repos/asf/logging-parent.git</connection>
|
||||||
|
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/logging-parent.git</developerConnection>
|
||||||
|
<url>https://gitbox.apache.org/repos/asf?p=logging-parent.git</url>
|
||||||
|
<tag>logging-parent-5</tag>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<mailingLists>
|
||||||
|
<mailingList>
|
||||||
|
<name>log4j-user</name>
|
||||||
|
<subscribe>log4j-user-subscribe@logging.apache.org</subscribe>
|
||||||
|
<unsubscribe>log4j-user-unsubscribe@logging.apache.org</unsubscribe>
|
||||||
|
<post>log4j-user@logging.apache.org</post>
|
||||||
|
<archive>https://lists.apache.org/list.html?log4j-user@logging.apache.org</archive>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>dev</name>
|
||||||
|
<subscribe>dev-subscribe@logging.apache.org</subscribe>
|
||||||
|
<unsubscribe>dev-unsubscribe@logging.apache.org</unsubscribe>
|
||||||
|
<post>dev@logging.apache.org</post>
|
||||||
|
<archive>https://lists.apache.org/list.html?dev@logging.apache.org</archive>
|
||||||
|
</mailingList>
|
||||||
|
</mailingLists>
|
||||||
|
|
||||||
|
<issueManagement>
|
||||||
|
<system>JIRA</system>
|
||||||
|
<url>https://issues.apache.org/jira/browse/LOG4J2</url>
|
||||||
|
</issueManagement>
|
||||||
|
|
||||||
|
<!-- ASF parent provides the following top level metadata that we don't need to override:
|
||||||
|
* license
|
||||||
|
* organization
|
||||||
|
* repositories
|
||||||
|
* distributionManagement
|
||||||
|
-->
|
||||||
|
|
||||||
|
</project>
|
||||||
Binary file not shown.
@@ -0,0 +1,191 @@
|
|||||||
|
<?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>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-parent</artifactId>
|
||||||
|
<version>4.2.21</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<artifactId>metrics-bom</artifactId>
|
||||||
|
<name>Metrics BOM</name>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<description>Bill of Materials for Metrics</description>
|
||||||
|
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-annotation</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-caffeine</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-caffeine3</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-core</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-collectd</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-ehcache</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-graphite</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-healthchecks</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-httpclient</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-httpclient5</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-httpasyncclient</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jakarta-servlet</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jakarta-servlet6</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jakarta-servlets</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jcache</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jdbi</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jdbi3</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jersey2</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jersey3</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jersey31</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jetty9</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jetty10</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jetty11</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jetty12</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jetty12-ee10</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jmx</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-json</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-jvm</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-log4j2</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-logback</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-logback13</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-logback14</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-servlet</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-servlets</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,479 @@
|
|||||||
|
<?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>
|
||||||
|
|
||||||
|
<groupId>io.dropwizard.metrics</groupId>
|
||||||
|
<artifactId>metrics-parent</artifactId>
|
||||||
|
<version>4.2.21</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>Metrics Parent</name>
|
||||||
|
<description>
|
||||||
|
The Metrics library.
|
||||||
|
</description>
|
||||||
|
<url>https://metrics.dropwizard.io</url>
|
||||||
|
|
||||||
|
<modules>
|
||||||
|
<module>docs</module>
|
||||||
|
<module>metrics-bom</module>
|
||||||
|
<module>metrics-annotation</module>
|
||||||
|
<module>metrics-benchmarks</module>
|
||||||
|
<module>metrics-caffeine</module>
|
||||||
|
<module>metrics-caffeine3</module>
|
||||||
|
<module>metrics-core</module>
|
||||||
|
<module>metrics-collectd</module>
|
||||||
|
<module>metrics-ehcache</module>
|
||||||
|
<module>metrics-graphite</module>
|
||||||
|
<module>metrics-healthchecks</module>
|
||||||
|
<module>metrics-httpclient</module>
|
||||||
|
<module>metrics-httpclient5</module>
|
||||||
|
<module>metrics-httpasyncclient</module>
|
||||||
|
<module>metrics-jakarta-servlet</module>
|
||||||
|
<module>metrics-jakarta-servlet6</module>
|
||||||
|
<module>metrics-jakarta-servlets</module>
|
||||||
|
<module>metrics-jcache</module>
|
||||||
|
<module>metrics-jcstress</module>
|
||||||
|
<module>metrics-jdbi</module>
|
||||||
|
<module>metrics-jdbi3</module>
|
||||||
|
<module>metrics-jersey2</module>
|
||||||
|
<module>metrics-jersey3</module>
|
||||||
|
<module>metrics-jersey31</module>
|
||||||
|
<module>metrics-jetty9</module>
|
||||||
|
<module>metrics-jetty10</module>
|
||||||
|
<module>metrics-jetty11</module>
|
||||||
|
<module>metrics-jmx</module>
|
||||||
|
<module>metrics-json</module>
|
||||||
|
<module>metrics-jvm</module>
|
||||||
|
<module>metrics-log4j2</module>
|
||||||
|
<module>metrics-logback</module>
|
||||||
|
<module>metrics-logback13</module>
|
||||||
|
<module>metrics-logback14</module>
|
||||||
|
<module>metrics-servlet</module>
|
||||||
|
<module>metrics-servlets</module>
|
||||||
|
</modules>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<project.build.outputTimestamp>2023-10-13T11:40:34Z</project.build.outputTimestamp>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
|
|
||||||
|
<jetty9.version>9.4.53.v20231009</jetty9.version>
|
||||||
|
<jetty10.version>10.0.17</jetty10.version>
|
||||||
|
<jetty11.version>11.0.17</jetty11.version>
|
||||||
|
<jetty12.version>12.0.2</jetty12.version>
|
||||||
|
<slf4j.version>1.7.36</slf4j.version>
|
||||||
|
<assertj.version>3.24.2</assertj.version>
|
||||||
|
<byte-buddy.version>1.14.9</byte-buddy.version>
|
||||||
|
<mockito.version>5.6.0</mockito.version>
|
||||||
|
<junit.version>4.13.1</junit.version>
|
||||||
|
<hamcrest.version>1.3</hamcrest.version>
|
||||||
|
<commons-lang3.version>3.13.0</commons-lang3.version>
|
||||||
|
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||||
|
<errorprone.version>2.22.0</errorprone.version>
|
||||||
|
<errorprone.javac.version>9+181-r4173-1</errorprone.javac.version>
|
||||||
|
<servlet6.version>6.0.0</servlet6.version>
|
||||||
|
|
||||||
|
<sonar.projectKey>dropwizard_metrics</sonar.projectKey>
|
||||||
|
<sonar.organization>dropwizard</sonar.organization>
|
||||||
|
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
||||||
|
<sonar.moduleKey>${project.artifactId}</sonar.moduleKey>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<name>Coda Hale</name>
|
||||||
|
<email>coda.hale@gmail.com</email>
|
||||||
|
<timezone>America/Los_Angeles</timezone>
|
||||||
|
<roles>
|
||||||
|
<role>architect</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<name>Ryan Tenney</name>
|
||||||
|
<email>ryan@10e.us</email>
|
||||||
|
<timezone>America/New_York</timezone>
|
||||||
|
<roles>
|
||||||
|
<role>committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<name>Artem Prigoda</name>
|
||||||
|
<email>prigoda.artem@ya.ru</email>
|
||||||
|
<timezone>Europe/Berlin</timezone>
|
||||||
|
<roles>
|
||||||
|
<role>committer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/dropwizard/metrics.git</connection>
|
||||||
|
<developerConnection>scm:git:git@github.com:dropwizard/metrics.git</developerConnection>
|
||||||
|
<url>https://github.com/dropwizard/metrics/</url>
|
||||||
|
<tag>v4.2.21</tag>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<issueManagement>
|
||||||
|
<system>github</system>
|
||||||
|
<url>https://github.com/dropwizard/metrics/issues/</url>
|
||||||
|
</issueManagement>
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>ossrh</id>
|
||||||
|
<name>Sonatype Nexus Snapshots</name>
|
||||||
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
<repository>
|
||||||
|
<id>ossrh</id>
|
||||||
|
<name>Nexus Release Repository</name>
|
||||||
|
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||||
|
</repository>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>jdk8</id>
|
||||||
|
<activation>
|
||||||
|
<jdk>1.8</jdk>
|
||||||
|
</activation>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<compilerArgs combine.children="append">
|
||||||
|
<arg>-J-Xbootclasspath/p:${settings.localRepository}/com/google/errorprone/javac/${errorprone.javac.version}/javac-${errorprone.javac.version}.jar</arg>
|
||||||
|
</compilerArgs>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>jdk17</id>
|
||||||
|
<activation>
|
||||||
|
<jdk>[17,)</jdk>
|
||||||
|
</activation>
|
||||||
|
<modules>
|
||||||
|
<module>metrics-jetty12</module>
|
||||||
|
<module>metrics-jetty12-ee10</module>
|
||||||
|
</modules>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<compilerArgs>
|
||||||
|
<arg>-Xlint:all</arg>
|
||||||
|
<arg>-XDcompilePolicy=simple</arg>
|
||||||
|
<arg>-Xplugin:ErrorProne -XepExcludedPaths:.*/target/generated-sources/.*</arg>
|
||||||
|
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg>
|
||||||
|
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg>
|
||||||
|
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED</arg>
|
||||||
|
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED</arg>
|
||||||
|
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED</arg>
|
||||||
|
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED</arg>
|
||||||
|
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED</arg>
|
||||||
|
<arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</arg>
|
||||||
|
<arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg>
|
||||||
|
<arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg>
|
||||||
|
</compilerArgs>
|
||||||
|
<annotationProcessorPaths>
|
||||||
|
<path>
|
||||||
|
<groupId>com.google.errorprone</groupId>
|
||||||
|
<artifactId>error_prone_core</artifactId>
|
||||||
|
<version>${errorprone.version}</version>
|
||||||
|
</path>
|
||||||
|
</annotationProcessorPaths>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
<profile>
|
||||||
|
<id>release-sign-artifacts</id>
|
||||||
|
<activation>
|
||||||
|
<property>
|
||||||
|
<name>performRelease</name>
|
||||||
|
<value>true</value>
|
||||||
|
</property>
|
||||||
|
</activation>
|
||||||
|
<properties>
|
||||||
|
<gpg.keyname>EDA86E9FB607B5FC9223FB767D4868B53E31E7AD</gpg.keyname>
|
||||||
|
</properties>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<version>3.3.0</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-sources</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar-no-fork</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-javadocs</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
|
<version>3.1.0</version>
|
||||||
|
<configuration>
|
||||||
|
<gpgArguments>
|
||||||
|
<arg>--pinentry-mode</arg>
|
||||||
|
<arg>loopback</arg>
|
||||||
|
</gpgArguments>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>sign-artifacts</id>
|
||||||
|
<phase>verify</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>sign</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.sonatype.plugins</groupId>
|
||||||
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||||||
|
<version>1.6.13</version>
|
||||||
|
<configuration>
|
||||||
|
<serverId>ossrh</serverId>
|
||||||
|
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
|
||||||
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>nexus-deploy</id>
|
||||||
|
<phase>deploy</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>deploy</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.cyclonedx</groupId>
|
||||||
|
<artifactId>cyclonedx-maven-plugin</artifactId>
|
||||||
|
<version>2.7.9</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>makeAggregateBom</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>${maven-compiler-plugin.version}</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
|
<version>3.1.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<version>3.6.0</version>
|
||||||
|
<configuration>
|
||||||
|
<source>8</source>
|
||||||
|
<doclint>none</doclint>
|
||||||
|
<quiet>true</quiet>
|
||||||
|
<notimestamp>true</notimestamp>
|
||||||
|
<legacyMode>true</legacyMode>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<release>8</release>
|
||||||
|
<fork>true</fork>
|
||||||
|
<parameters>true</parameters>
|
||||||
|
<showWarnings>true</showWarnings>
|
||||||
|
<compilerArgs>
|
||||||
|
<arg>-Xlint:all</arg>
|
||||||
|
<arg>-XDcompilePolicy=simple</arg>
|
||||||
|
<arg>-Xplugin:ErrorProne -XepExcludedPaths:.*/target/generated-sources/.*</arg>
|
||||||
|
</compilerArgs>
|
||||||
|
<annotationProcessorPaths>
|
||||||
|
<path>
|
||||||
|
<groupId>com.google.errorprone</groupId>
|
||||||
|
<artifactId>error_prone_core</artifactId>
|
||||||
|
<version>${errorprone.version}</version>
|
||||||
|
</path>
|
||||||
|
</annotationProcessorPaths>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.felix</groupId>
|
||||||
|
<artifactId>maven-bundle-plugin</artifactId>
|
||||||
|
<version>5.1.9</version>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
<configuration>
|
||||||
|
<instructions>
|
||||||
|
<Import-Package><![CDATA[
|
||||||
|
javax.servlet*;version="[2.5.0,4.0.0)",
|
||||||
|
org.slf4j*;version="[1.6.0,2.0.0)",
|
||||||
|
sun.misc.*;resolution:=optional,
|
||||||
|
com.sun.management.*;resolution:=optional,
|
||||||
|
*
|
||||||
|
]]>
|
||||||
|
</Import-Package>
|
||||||
|
<Automatic-Module-Name>${javaModuleName}</Automatic-Module-Name>
|
||||||
|
</instructions>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>3.1.2</version>
|
||||||
|
<configuration>
|
||||||
|
<argLine>@{argLine} -Djava.net.preferIPv4Stack=true</argLine>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<version>3.4.1</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>enforce</id>
|
||||||
|
<configuration>
|
||||||
|
<rules>
|
||||||
|
<DependencyConvergence />
|
||||||
|
</rules>
|
||||||
|
</configuration>
|
||||||
|
<goals>
|
||||||
|
<goal>enforce</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
|
<version>3.6.0</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>analyze</id>
|
||||||
|
<goals>
|
||||||
|
<goal>analyze-only</goal>
|
||||||
|
<goal>analyze-dep-mgt</goal>
|
||||||
|
<goal>analyze-duplicate</goal>
|
||||||
|
</goals>
|
||||||
|
<phase>verify</phase>
|
||||||
|
<configuration>
|
||||||
|
<failOnWarning>true</failOnWarning>
|
||||||
|
<ignoreNonCompile>true</ignoreNonCompile>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<version>3.0.1</version>
|
||||||
|
<configuration>
|
||||||
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
||||||
|
<mavenExecutorId>forked-path</mavenExecutorId>
|
||||||
|
<tagNameFormat>v@{project.version}</tagNameFormat>
|
||||||
|
<preparationGoals>clean test</preparationGoals>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>3.3.0</version>
|
||||||
|
<configuration>
|
||||||
|
<archive>
|
||||||
|
<manifest>
|
||||||
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
||||||
|
</manifest>
|
||||||
|
<manifestEntries>
|
||||||
|
<Automatic-Module-Name>${javaModuleName}</Automatic-Module-Name>
|
||||||
|
</manifestEntries>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||||
|
<version>3.3.0</version>
|
||||||
|
<configuration>
|
||||||
|
<configLocation>checkstyle.xml</configLocation>
|
||||||
|
<includeTestSourceDirectory>true</includeTestSourceDirectory>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<version>3.12.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||||
|
<version>3.4.5</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.jacoco</groupId>
|
||||||
|
<artifactId>jacoco-maven-plugin</artifactId>
|
||||||
|
<version>0.8.10</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>prepare-agent</id>
|
||||||
|
<goals>
|
||||||
|
<goal>prepare-agent</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
<execution>
|
||||||
|
<id>report</id>
|
||||||
|
<goals>
|
||||||
|
<goal>report</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,182 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-bom</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>micrometer-bom</name>
|
||||||
|
<description>Micrometer BOM (Bill of Materials) for managing Micrometer artifact versions</description>
|
||||||
|
<url>https://github.com/micrometer-metrics/micrometer</url>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>shakuzen</id>
|
||||||
|
<name>Tommy Ludwig</name>
|
||||||
|
<email>tludwig@vmware.com</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<url>git@github.com:micrometer-metrics/micrometer.git</url>
|
||||||
|
</scm>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-core</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-appoptics</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-atlas</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-azure-monitor</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-cloudwatch</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-cloudwatch2</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-datadog</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-dynatrace</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-elastic</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-ganglia</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-graphite</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-health</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-humio</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-influx</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-jmx</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-kairos</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-new-relic</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-opentsdb</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-otlp</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-prometheus</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-signalfx</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-stackdriver</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-statsd</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-registry-wavefront</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.micrometer</groupId>
|
||||||
|
<artifactId>micrometer-test</artifactId>
|
||||||
|
<version>1.9.16</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
<properties>
|
||||||
|
<nebula_Manifest_Version>1.0</nebula_Manifest_Version>
|
||||||
|
<nebula_Implementation_Title>io.micrometer#micrometer-bom;1.9.16</nebula_Implementation_Title>
|
||||||
|
<nebula_Implementation_Version>1.9.16</nebula_Implementation_Version>
|
||||||
|
<nebula_Built_Status>release</nebula_Built_Status>
|
||||||
|
<nebula_Built_By>circleci</nebula_Built_By>
|
||||||
|
<nebula_Built_OS>Linux</nebula_Built_OS>
|
||||||
|
<nebula_Build_Timezone>Etc/UTC</nebula_Build_Timezone>
|
||||||
|
<nebula_Build_Date_UTC>2023-10-10T06:19:57.315351580Z</nebula_Build_Date_UTC>
|
||||||
|
<nebula_Build_Date>2023-10-10_06:19:57</nebula_Build_Date>
|
||||||
|
<nebula_Gradle_Version>8.4</nebula_Gradle_Version>
|
||||||
|
<nebula_Module_Source>/micrometer-bom</nebula_Module_Source>
|
||||||
|
<nebula_Module_Origin>git@github.com:micrometer-metrics/micrometer.git</nebula_Module_Origin>
|
||||||
|
<nebula_Change>5cba7fa</nebula_Change>
|
||||||
|
<nebula_Full_Change>5cba7fae38865618f88f2ee9a53c30dfc86a484d</nebula_Full_Change>
|
||||||
|
<nebula_Branch>HEAD</nebula_Branch>
|
||||||
|
<nebula_Build_Host>0a43d85887ff</nebula_Build_Host>
|
||||||
|
<nebula_Build_Job>deploy</nebula_Build_Job>
|
||||||
|
<nebula_Build_Number>25401</nebula_Build_Number>
|
||||||
|
<nebula_Build_Id>25401</nebula_Build_Id>
|
||||||
|
<nebula_Build_Url>https://circleci.com/gh/micrometer-metrics/micrometer/25401</nebula_Build_Url>
|
||||||
|
<nebula_Created_By>20.0.1+9 (Eclipse Adoptium)</nebula_Created_By>
|
||||||
|
<nebula_Module_Owner>tludwig@vmware.com</nebula_Module_Owner>
|
||||||
|
<nebula_Module_Email>tludwig@vmware.com</nebula_Module_Email>
|
||||||
|
</properties>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,98 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.mockito</groupId>
|
||||||
|
<artifactId>mockito-bom</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>mockito-bom</name>
|
||||||
|
<description>Mockito Bill of Materials (BOM)</description>
|
||||||
|
<url>https://github.com/mockito/mockito</url>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The MIT License</name>
|
||||||
|
<url>https://github.com/mockito/mockito/blob/main/LICENSE</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>mockitoguy</id>
|
||||||
|
<name>Szczepan Faber</name>
|
||||||
|
<url>https://github.com/mockitoguy</url>
|
||||||
|
<roles>
|
||||||
|
<role>Core developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>bric3</id>
|
||||||
|
<name>Brice Dutheil</name>
|
||||||
|
<url>https://github.com/bric3</url>
|
||||||
|
<roles>
|
||||||
|
<role>Core developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>raphw</id>
|
||||||
|
<name>Rafael Winterhalter</name>
|
||||||
|
<url>https://github.com/raphw</url>
|
||||||
|
<roles>
|
||||||
|
<role>Core developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>TimvdLippe</id>
|
||||||
|
<name>Tim van der Lippe</name>
|
||||||
|
<url>https://github.com/TimvdLippe</url>
|
||||||
|
<roles>
|
||||||
|
<role>Core developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<url>https://github.com/mockito/mockito.git</url>
|
||||||
|
</scm>
|
||||||
|
<issueManagement>
|
||||||
|
<system>GitHub issues</system>
|
||||||
|
<url>https://github.com/mockito/mockito/issues</url>
|
||||||
|
</issueManagement>
|
||||||
|
<ciManagement>
|
||||||
|
<system>GH Actions</system>
|
||||||
|
<url>https://github.com/mockito/mockito/actions</url>
|
||||||
|
</ciManagement>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mockito</groupId>
|
||||||
|
<artifactId>mockito-core</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mockito</groupId>
|
||||||
|
<artifactId>mockito-android</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mockito</groupId>
|
||||||
|
<artifactId>mockito-errorprone</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mockito</groupId>
|
||||||
|
<artifactId>mockito-inline</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mockito</groupId>
|
||||||
|
<artifactId>mockito-junit-jupiter</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mockito</groupId>
|
||||||
|
<artifactId>mockito-proxy</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,375 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!--
|
||||||
|
~ Copyright 2017 The Netty Project
|
||||||
|
~
|
||||||
|
~ The Netty Project licenses this file to you under the Apache License,
|
||||||
|
~ version 2.0 (the "License"); you may not use this file except in compliance
|
||||||
|
~ with the License. You may obtain a copy of the License at:
|
||||||
|
~
|
||||||
|
~ https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
~
|
||||||
|
~ Unless required by applicable law or agreed to in writing, software
|
||||||
|
~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||||
|
~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||||
|
~ License for the specific language governing permissions and limitations
|
||||||
|
~ under the License.
|
||||||
|
-->
|
||||||
|
<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 https://maven.apache.org/maven-v4_0_0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<parent>
|
||||||
|
<groupId>org.sonatype.oss</groupId>
|
||||||
|
<artifactId>oss-parent</artifactId>
|
||||||
|
<version>7</version>
|
||||||
|
<relativePath />
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-bom</artifactId>
|
||||||
|
<version>4.1.100.Final</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>Netty/BOM</name>
|
||||||
|
<description>Netty (Bill of Materials)</description>
|
||||||
|
<url>https://netty.io/</url>
|
||||||
|
|
||||||
|
<organization>
|
||||||
|
<name>The Netty Project</name>
|
||||||
|
<url>https://netty.io/</url>
|
||||||
|
</organization>
|
||||||
|
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License, Version 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<inceptionYear>2008</inceptionYear>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<url>https://github.com/netty/netty</url>
|
||||||
|
<connection>scm:git:git://github.com/netty/netty.git</connection>
|
||||||
|
<developerConnection>scm:git:ssh://git@github.com/netty/netty.git</developerConnection>
|
||||||
|
<tag>netty-4.1.100.Final</tag>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>netty.io</id>
|
||||||
|
<name>The Netty Project Contributors</name>
|
||||||
|
<email>netty@googlegroups.com</email>
|
||||||
|
<url>https://netty.io/</url>
|
||||||
|
<organization>The Netty Project</organization>
|
||||||
|
<organizationUrl>https://netty.io/</organizationUrl>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<!-- Keep in sync with ../pom.xml -->
|
||||||
|
<tcnative.version>2.0.61.Final</tcnative.version>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>com.commsen.maven</groupId>
|
||||||
|
<artifactId>bom-helper-maven-plugin</artifactId>
|
||||||
|
<version>0.4.0</version>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<!-- All release modules -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-buffer</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-codec</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-codec-dns</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-codec-haproxy</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-codec-http</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-codec-http2</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-codec-memcache</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-codec-mqtt</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-codec-redis</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-codec-smtp</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-codec-socks</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-codec-stomp</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-codec-xml</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-common</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-dev-tools</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-handler</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-handler-proxy</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-handler-ssl-ocsp</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-resolver</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-resolver-dns</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-rxtx</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-sctp</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-udt</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-example</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-all</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-resolver-dns-classes-macos</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-resolver-dns-native-macos</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-resolver-dns-native-macos</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>osx-x86_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-resolver-dns-native-macos</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>osx-aarch_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-native-unix-common</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-native-unix-common</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>linux-aarch_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-native-unix-common</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>linux-x86_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-native-unix-common</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>osx-x86_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-native-unix-common</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>osx-aarch_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-classes-epoll</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-native-epoll</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-native-epoll</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>linux-aarch_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-native-epoll</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>linux-x86_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-classes-kqueue</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-native-kqueue</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-native-kqueue</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>osx-x86_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-transport-native-kqueue</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
<classifier>osx-aarch_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<!-- Add netty-tcnative* as well as users need to ensure they use the correct version -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-tcnative-classes</artifactId>
|
||||||
|
<version>${tcnative.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-tcnative</artifactId>
|
||||||
|
<version>${tcnative.version}</version>
|
||||||
|
<classifier>linux-x86_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-tcnative</artifactId>
|
||||||
|
<version>${tcnative.version}</version>
|
||||||
|
<classifier>linux-x86_64-fedora</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-tcnative</artifactId>
|
||||||
|
<version>${tcnative.version}</version>
|
||||||
|
<classifier>linux-aarch_64-fedora</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-tcnative</artifactId>
|
||||||
|
<version>${tcnative.version}</version>
|
||||||
|
<classifier>osx-x86_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-tcnative-boringssl-static</artifactId>
|
||||||
|
<version>${tcnative.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-tcnative-boringssl-static</artifactId>
|
||||||
|
<version>${tcnative.version}</version>
|
||||||
|
<classifier>linux-x86_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-tcnative-boringssl-static</artifactId>
|
||||||
|
<version>${tcnative.version}</version>
|
||||||
|
<classifier>linux-aarch_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-tcnative-boringssl-static</artifactId>
|
||||||
|
<version>${tcnative.version}</version>
|
||||||
|
<classifier>osx-x86_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-tcnative-boringssl-static</artifactId>
|
||||||
|
<version>${tcnative.version}</version>
|
||||||
|
<classifier>osx-aarch_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.netty</groupId>
|
||||||
|
<artifactId>netty-tcnative-boringssl-static</artifactId>
|
||||||
|
<version>${tcnative.version}</version>
|
||||||
|
<classifier>windows-x86_64</classifier>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,278 @@
|
|||||||
|
<?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/maven-v4_0_0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>com.oracle.database.jdbc</groupId>
|
||||||
|
<artifactId>ojdbc-bom</artifactId>
|
||||||
|
<version>21.5.0.0</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<version.lib.ojdbc>21.5.0.0</version.lib.ojdbc>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
ojdbc-bom.pom: Bill of Materials (BOM) to pick and choose the
|
||||||
|
artifacts that developers want.
|
||||||
|
Refer to "DIY Using the BOM file" section of the Maven Central Guide
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY
|
||||||
|
-->
|
||||||
|
<name>ojdbc-bom</name>
|
||||||
|
<description> Bill of Materials (BOM) for JDBC driver and other additional jars</description>
|
||||||
|
<url>https://www.oracle.com/database/technologies/maven-central-guide.html</url>
|
||||||
|
<inceptionYear>1997</inceptionYear>
|
||||||
|
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Oracle Free Use Terms and Conditions (FUTC)</name>
|
||||||
|
<url>https://www.oracle.com/downloads/licenses/oracle-free-license.html</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<organization>Oracle America, Inc.</organization>
|
||||||
|
<organizationUrl>http://www.oracle.com</organizationUrl>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<url></url>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<!-- JDBC driver: Certified with JDK11, JDK12, JDK13, JDK14 and JDK15 (compatibility with JDBC 4.3)
|
||||||
|
Refer to 'Use Case 1' of section 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc</groupId>
|
||||||
|
<artifactId>ojdbc11</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- JDBC driver - compiled with JDK8 (compatibility with JDBC 4.2),
|
||||||
|
certified with JDK8, JDK11, JDK12, JDK13, JDK14 and JDK15.
|
||||||
|
Refer to 'Use Case 1' of section 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc</groupId>
|
||||||
|
<artifactId>ojdbc8</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Universal Connection Pool (UCP) that provides the connection pool capabilities.
|
||||||
|
Refer to 'Use Case 2' and 'Use Case 9' of section 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc</groupId>
|
||||||
|
<artifactId>ucp</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Universal Connection Pool (UCP) compiled with JDK11 that provides the connection pool capabilities.
|
||||||
|
Refer to 'Use Case 2' and 'Use Case 9' of section 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc</groupId>
|
||||||
|
<artifactId>ucp11</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- A dedicated path for ingesting high volume of data into Oracle database.
|
||||||
|
Refer to 'Use Case 12' of section 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc</groupId>
|
||||||
|
<artifactId>rsi</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Libraries for connecting to the Oracle database using Oracle Wallets.
|
||||||
|
All three oraclepki.jar, osdt_core.jar, and osdt_cert.jar are required for
|
||||||
|
connecting to Autonomous Database.
|
||||||
|
Refer to 'Use Case 3' and 'Use Case 10' of 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<!-- The Oracle PKI provider used for Oracle Wallets -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.security</groupId>
|
||||||
|
<artifactId>oraclepki</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- The core components between oraclepki.jar and osdt_cert.jar -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.security</groupId>
|
||||||
|
<artifactId>osdt_core</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- The certificate management components used for Oracle Wallets -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.security</groupId>
|
||||||
|
<artifactId>osdt_cert</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Libraries recommended for High Availability support.
|
||||||
|
Make sure to have ons.jar and simplefan.jar along with ucp.jar.
|
||||||
|
Refer to 'Use Case 4' and 'Use Case 11' of 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<!-- Simple Fast Application Notification (FAN) library -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.ha</groupId>
|
||||||
|
<artifactId>simplefan</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Oracle Notification System (ONS) library for FAN events -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.ha</groupId>
|
||||||
|
<artifactId>ons</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Libraries recommended for NLS or Internationalization.
|
||||||
|
Refer to 'Use Case 6' of 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.nls</groupId>
|
||||||
|
<artifactId>orai18n</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Libraries to support java.sql.SQLXML interface.
|
||||||
|
Refer to 'Use Case 5' of 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.xml</groupId>
|
||||||
|
<artifactId>xdb</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- The Oracle Database XML Parser library.
|
||||||
|
Refer to 'Use Case 5' of 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.xml</groupId>
|
||||||
|
<artifactId>xmlparserv2</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Same as ojdbc11.jar except compiled with the -g option to include debugging
|
||||||
|
information and java.util.logging calls are included.
|
||||||
|
Refer to 'Use Case 8' of 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc.debug</groupId>
|
||||||
|
<artifactId>ojdbc11_g</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Same as ojdbc8.jar except compiled with the -g option to include debugging
|
||||||
|
information and java.util.logging calls are included.
|
||||||
|
Refer to 'Use Case 8' of 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc.debug</groupId>
|
||||||
|
<artifactId>ojdbc8_g</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Same as ojdbc8dms.jar except compiled with the -g option to include debugging
|
||||||
|
information and java.util.logging calls are included.
|
||||||
|
Refer to 'Use Case 8' of 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc.debug</groupId>
|
||||||
|
<artifactId>ojdbc8dms_g</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Same as ojdbc11dms.jar except compiled with the -g option to include debugging
|
||||||
|
information and java.util.logging calls are included.
|
||||||
|
Refer to 'Use Case 8' of 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc.debug</groupId>
|
||||||
|
<artifactId>ojdbc11dms_g</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- The Oracle Dynamic Monitoring System (i.e., observability) library.
|
||||||
|
Refer to 'Use Case 7' of 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.observability</groupId>
|
||||||
|
<artifactId>dms</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Same as ojdbc11.jar but includes Dynamic Monitoring Service (DMS)
|
||||||
|
instrumentation and requires dms.jar in the classpath.
|
||||||
|
Refer to 'Use Case 7' of 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.observability</groupId>
|
||||||
|
<artifactId>ojdbc11dms</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- Same as ojdbc8.jar but includes Dynamic Monitoring Service (DMS)
|
||||||
|
instrumentation and requires dms.jar in the classpath.
|
||||||
|
Refer to 'Use Case 7' of 'DIY Using the BOM file'.
|
||||||
|
https://www.oracle.com/database/technologies/maven-central-guide.html#DIY -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.observability</groupId>
|
||||||
|
<artifactId>ojdbc8dms</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- ojdbc11-production.pom bundles ojdbc11.jar with all the companion artifacts. -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc</groupId>
|
||||||
|
<artifactId>ojdbc11-production</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<!-- ojdbc8-production.pom bundles ojdbc8.jar with all the companion artifacts. -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc</groupId>
|
||||||
|
<artifactId>ojdbc8-production</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<!-- ojdbc8-observability.pom bundles ojdbc8dms.jar with all the companion artifacts. -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.observability</groupId>
|
||||||
|
<artifactId>ojdbc8-observability</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<!-- ojdbc11-observability.pom bundles ojdbc11dms.jar with all the companion artifacts. -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.observability</groupId>
|
||||||
|
<artifactId>ojdbc11-observability</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<!-- Note: This should not be used in production.
|
||||||
|
ojdbc8-debug.pom bundles ojdbc8_g.jar with all the companion artifacts. -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc.debug</groupId>
|
||||||
|
<artifactId>ojdbc8-debug</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<!-- Note: This should not be used in production.
|
||||||
|
ojdbc11-debug.pom bundles ojdbc11_g.jar with all the companion artifacts. -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc.debug</groupId>
|
||||||
|
<artifactId>ojdbc11-debug</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<!-- Note: This should not be used in production.
|
||||||
|
ojdbc8-observability-debug.pom bundles ojdbc8dms_g.jar with all the companion artifacts. -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc.debug</groupId>
|
||||||
|
<artifactId>ojdbc8-observability-debug</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
<!-- Note: This should not be used in production.
|
||||||
|
ojdbc11-observability-debug.pom bundles ojdbc11dms_g.jar with all the companion artifacts. -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.jdbc.debug</groupId>
|
||||||
|
<artifactId>ojdbc11-observability-debug</artifactId>
|
||||||
|
<version>${version.lib.ojdbc}</version>
|
||||||
|
<type>pom</type>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,82 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<!-- This module was also published with a richer model, Gradle metadata, -->
|
||||||
|
<!-- which should be used instead. Do not delete the following line which -->
|
||||||
|
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
||||||
|
<!-- that they should prefer consuming it instead. -->
|
||||||
|
<!-- do_not_remove: published-with-gradle-metadata -->
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
|
<artifactId>okhttp-bom</artifactId>
|
||||||
|
<version>4.9.3</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>okhttp-bom</name>
|
||||||
|
<description>Square’s meticulous HTTP client for Java and Kotlin.</description>
|
||||||
|
<url>https://square.github.io/okhttp/</url>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<name>Square, Inc.</name>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:https://github.com/square/okhttp.git</connection>
|
||||||
|
<developerConnection>scm:git:ssh://git@github.com/square/okhttp.git</developerConnection>
|
||||||
|
<url>https://github.com/square/okhttp</url>
|
||||||
|
</scm>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
|
<artifactId>mockwebserver</artifactId>
|
||||||
|
<version>4.9.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
|
<artifactId>okcurl</artifactId>
|
||||||
|
<version>4.9.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
|
<artifactId>okhttp</artifactId>
|
||||||
|
<version>4.9.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
|
<artifactId>okhttp-brotli</artifactId>
|
||||||
|
<version>4.9.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
|
<artifactId>okhttp-dnsoverhttps</artifactId>
|
||||||
|
<version>4.9.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
|
<artifactId>logging-interceptor</artifactId>
|
||||||
|
<version>4.9.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
|
<artifactId>okhttp-sse</artifactId>
|
||||||
|
<version>4.9.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
|
<artifactId>okhttp-tls</artifactId>
|
||||||
|
<version>4.9.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.squareup.okhttp3</groupId>
|
||||||
|
<artifactId>okhttp-urlconnection</artifactId>
|
||||||
|
<version>4.9.3</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,660 @@
|
|||||||
|
<?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/maven-v4_0_0.xsd">
|
||||||
|
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<groupId>com.fasterxml</groupId>
|
||||||
|
<artifactId>oss-parent</artifactId>
|
||||||
|
<version>43</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>FasterXML.com parent pom</name>
|
||||||
|
<description>FasterXML.com parent pom</description>
|
||||||
|
<url>http://github.com/FasterXML/</url>
|
||||||
|
<organization>
|
||||||
|
<name>FasterXML</name>
|
||||||
|
<url>http://fasterxml.com/</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
<!-- to fill in mostly by children, but stupid Sonatype REQUIRES
|
||||||
|
one developer already here
|
||||||
|
-->
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>cowtowncoder</id>
|
||||||
|
<name>Tatu Saloranta</name>
|
||||||
|
<email>tatu@fasterxml.com</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git@github.com:FasterXML/oss-parent.git</connection>
|
||||||
|
<developerConnection>scm:git:git@github.com:FasterXML/oss-parent.git</developerConnection>
|
||||||
|
<url>http://github.com/FasterXML/oss-parent</url>
|
||||||
|
<tag>oss-parent-43</tag>
|
||||||
|
</scm>
|
||||||
|
<issueManagement>
|
||||||
|
<system>GitHub Issue Management</system>
|
||||||
|
<url>https://github.com/FasterXML/${project.artifactId}/issues</url>
|
||||||
|
</issueManagement>
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>sonatype-nexus-snapshots</id>
|
||||||
|
<name>Sonatype Nexus Snapshots</name>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
|
||||||
|
<repository>
|
||||||
|
<id>sonatype-nexus-staging</id>
|
||||||
|
<name>Nexus Release Repository</name>
|
||||||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||||
|
</repository>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
|
||||||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
|
|
||||||
|
<generatedSourcesDir>${project.build.directory}/generated-sources</generatedSourcesDir>
|
||||||
|
|
||||||
|
<javadoc.maxmemory>1g</javadoc.maxmemory>
|
||||||
|
|
||||||
|
<!-- Use 1.6 as default baseline -->
|
||||||
|
<javac.src.version>1.6</javac.src.version>
|
||||||
|
<javac.target.version>1.6</javac.target.version>
|
||||||
|
|
||||||
|
<!-- By default, include all debug info; "vars" and "lines" both add 10-15% in size,
|
||||||
|
"source" very little
|
||||||
|
-->
|
||||||
|
<javac.debuglevel>lines,source,vars</javac.debuglevel>
|
||||||
|
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ssZ</maven.build.timestamp.format>
|
||||||
|
<!--
|
||||||
|
| Configuration properties for the OSGi maven-bundle-plugin
|
||||||
|
-->
|
||||||
|
<osgi.export>${project.groupId}.*;version=${project.version}</osgi.export>
|
||||||
|
<osgi.import>*</osgi.import>
|
||||||
|
<osgi.dynamicImport />
|
||||||
|
<osgi.private />
|
||||||
|
<osgi.requiredExecutionEnvironment />
|
||||||
|
<osgi.versionpolicy>${range;[===,=+);${@}}</osgi.versionpolicy>
|
||||||
|
<osgi.includeResource>{maven-resources}</osgi.includeResource>
|
||||||
|
<!-- 27-Dec-2015, tatu: Allow use of "Main-Class" too, default to empty -->
|
||||||
|
<osgi.mainClass />
|
||||||
|
|
||||||
|
<!--
|
||||||
|
| shared build/report plugins version
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- 04-Nov-2016, tatu: 3.2.0 for Jackson 2.9
|
||||||
|
05-Mar-2019, tatu: 4.2.0 for Jackson 2.10
|
||||||
|
31-Jul-2020, tatu: 5.1.1 for Jackson 2.12
|
||||||
|
-->
|
||||||
|
<version.plugin.bundle>5.1.1</version.plugin.bundle>
|
||||||
|
|
||||||
|
<version.plugin.clean>3.1.0</version.plugin.clean>
|
||||||
|
<version.plugin.cobertura>2.7</version.plugin.cobertura>
|
||||||
|
|
||||||
|
<!-- 31-Jul-2020, tatu: 3.8.1 for Jackson 2.12
|
||||||
|
-->
|
||||||
|
<version.plugin.compiler>3.8.1</version.plugin.compiler>
|
||||||
|
<version.plugin.deploy>3.0.0-M1</version.plugin.deploy>
|
||||||
|
|
||||||
|
<!-- 08-Aug-2017, tatu: Enforcer plugin will not work with Java 9
|
||||||
|
prior to 3.0.0
|
||||||
|
-->
|
||||||
|
<version.plugin.enforcer>3.0.0-M3</version.plugin.enforcer>
|
||||||
|
<version.plugin.gpg>1.6</version.plugin.gpg>
|
||||||
|
|
||||||
|
<version.plugin.install>3.0.0-M1</version.plugin.install>
|
||||||
|
<version.plugin.jacoco>0.8.7</version.plugin.jacoco>
|
||||||
|
<version.plugin.jar>3.2.0</version.plugin.jar>
|
||||||
|
|
||||||
|
<version.plugin.javadoc>3.3.0</version.plugin.javadoc>
|
||||||
|
|
||||||
|
<!-- 04-Mar-2019, latest property with v35, for Java 9+ Modules support
|
||||||
|
(originally added in v34)
|
||||||
|
-->
|
||||||
|
<version.plugin.moditect>1.0.0.RC1</version.plugin.moditect>
|
||||||
|
|
||||||
|
<version.plugin.release>3.0.0-M1</version.plugin.release>
|
||||||
|
<version.plugin.replacer>1.5.3</version.plugin.replacer>
|
||||||
|
<version.plugin.resources>3.1.0</version.plugin.resources>
|
||||||
|
|
||||||
|
<version.plugin.shade>3.2.4</version.plugin.shade>
|
||||||
|
<version.plugin.site>3.9.1</version.plugin.site>
|
||||||
|
|
||||||
|
<version.plugin.source>3.2.1</version.plugin.source>
|
||||||
|
|
||||||
|
<!-- 05-Dec-2018, 2.17 -> 2.22.0 -->
|
||||||
|
<!-- 19-May-2019, 2.22.0 -> 2.22.2 (for JDK 11) -->
|
||||||
|
<!-- 31-Jul-2020, 2.22.2 -> 3.0.0-M5 -->
|
||||||
|
<version.plugin.surefire>2.22.2</version.plugin.surefire>
|
||||||
|
|
||||||
|
<!-- other "well-known" lib versions -->
|
||||||
|
<!-- 13-Oct-2020, 4.13 -> 4.13.1 (version 41) -->
|
||||||
|
<version.junit>4.13.1</version.junit>
|
||||||
|
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>sonatype-nexus-snapshots</id>
|
||||||
|
<name>Sonatype Nexus Snapshots</name>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
|
<version>1.7</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-clean-plugin</artifactId>
|
||||||
|
<version>${version.plugin.clean}</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
|
<version>3.1.2</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
|
<version>${version.plugin.deploy}</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
|
<version>${version.plugin.gpg}</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-install-plugin</artifactId>
|
||||||
|
<version>${version.plugin.install}</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<version>${version.plugin.javadoc}</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-resources-plugin</artifactId>
|
||||||
|
<version>${version.plugin.resources}</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
|
<version>${version.plugin.shade}</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<version>${version.plugin.site}</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<version>${version.plugin.source}</version>
|
||||||
|
</plugin>
|
||||||
|
<!-- 05-Dec-2018, tatu: v34 adds "moditect" plug-in, for Java 9+ Module support -->
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.moditect</groupId>
|
||||||
|
<artifactId>moditect-maven-plugin</artifactId>
|
||||||
|
<version>${version.plugin.moditect}</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<!-- 26-Mar-2018, tatu: This is a weird component; up to 1.4.1 has
|
||||||
|
artifact `maven-replacer-plugin`; from 1.5 just `replacer`?!?!
|
||||||
|
-->
|
||||||
|
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
||||||
|
<artifactId>replacer</artifactId>
|
||||||
|
<!--
|
||||||
|
<artifactId>maven-replacer-plugin</artifactId>
|
||||||
|
-->
|
||||||
|
<version>${version.plugin.replacer}</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>cobertura-maven-plugin</artifactId>
|
||||||
|
<version>${version.plugin.cobertura}</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.felix</groupId>
|
||||||
|
<artifactId>maven-bundle-plugin</artifactId>
|
||||||
|
<version>${version.plugin.bundle}</version>
|
||||||
|
<configuration>
|
||||||
|
<instructions>
|
||||||
|
<!--
|
||||||
|
| stops the "uses" clauses being added to "Export-Package" manifest entry
|
||||||
|
-->
|
||||||
|
<!-- 04-Nov-2016, tatu: Not quite sure why it was disabled; see
|
||||||
|
|
||||||
|
https://github.com/FasterXML/jackson-jaxrs-providers/issues/93
|
||||||
|
|
||||||
|
for problem caused. Because of this, removed from Jackson 2.9
|
||||||
|
|
||||||
|
<_nouses>true</_nouses>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
| Stop the JAVA_1_n_HOME variables from being treated as headers by Bnd
|
||||||
|
-->
|
||||||
|
<_removeheaders>Include-Resource,JAVA_1_3_HOME,JAVA_1_4_HOME,JAVA_1_5_HOME,JAVA_1_6_HOME,JAVA_1_7_HOME</_removeheaders>
|
||||||
|
<_versionpolicy>${osgi.versionpolicy}</_versionpolicy>
|
||||||
|
<Bundle-Name>${project.name}</Bundle-Name>
|
||||||
|
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
|
||||||
|
<Bundle-Description>${project.description}</Bundle-Description>
|
||||||
|
<Export-Package>${osgi.export}</Export-Package>
|
||||||
|
<Private-Package>${osgi.private}</Private-Package>
|
||||||
|
<Import-Package>${osgi.import}</Import-Package>
|
||||||
|
<DynamicImport-Package>${osgi.dynamicImport}</DynamicImport-Package>
|
||||||
|
<Include-Resource>${osgi.includeResource}</Include-Resource>
|
||||||
|
<Bundle-DocURL>${project.url}</Bundle-DocURL>
|
||||||
|
<Bundle-RequiredExecutionEnvironment>${osgi.requiredExecutionEnvironment}</Bundle-RequiredExecutionEnvironment>
|
||||||
|
|
||||||
|
<Implementation-Build-Date>${maven.build.timestamp}</Implementation-Build-Date>
|
||||||
|
<X-Compile-Source-JDK>${javac.src.version}</X-Compile-Source-JDK>
|
||||||
|
<X-Compile-Target-JDK>${javac.target.version}</X-Compile-Target-JDK>
|
||||||
|
|
||||||
|
<Implementation-Title>${project.name}</Implementation-Title>
|
||||||
|
<Implementation-Version>${project.version}</Implementation-Version>
|
||||||
|
<Implementation-Vendor-Id>${project.groupId}</Implementation-Vendor-Id>
|
||||||
|
<Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
|
||||||
|
|
||||||
|
<Specification-Title>${project.name}</Specification-Title>
|
||||||
|
<Specification-Version>${project.version}</Specification-Version>
|
||||||
|
<Specification-Vendor>${project.organization.name}</Specification-Vendor>
|
||||||
|
|
||||||
|
<Main-Class>${osgi.mainClass}</Main-Class>
|
||||||
|
</instructions>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<!-- Plug-in settings needed for Maven/Nexus release handling
|
||||||
|
-->
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<version>${version.plugin.release}</version>
|
||||||
|
<configuration>
|
||||||
|
<mavenExecutorId>forked-path</mavenExecutorId>
|
||||||
|
<useReleaseProfile>false</useReleaseProfile>
|
||||||
|
<arguments>-Prelease</arguments>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<!-- 05-Mar-2021, tatu: I don't think this is in use at all?
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.sonatype.plugins</groupId>
|
||||||
|
<artifactId>nexus-maven-plugin</artifactId>
|
||||||
|
<version>2.1</version>
|
||||||
|
<configuration>
|
||||||
|
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
|
||||||
|
<serverAuthId>sonatype-nexus-staging</serverAuthId>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
-->
|
||||||
|
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
|
||||||
|
<plugins>
|
||||||
|
<!-- In Alphabetic order by 'artifactId' -->
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>build-helper-maven-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>add-generated-sources</id>
|
||||||
|
<phase>generate-sources</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>add-source</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<sources>
|
||||||
|
<source>${generatedSourcesDir}</source>
|
||||||
|
</sources>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.jacoco</groupId>
|
||||||
|
<artifactId>jacoco-maven-plugin</artifactId>
|
||||||
|
<version>${version.plugin.jacoco}</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>${version.plugin.compiler}</version>
|
||||||
|
<!-- 05-Dec-2018, tatu: Looks like override needed for some reason
|
||||||
|
(probably for Java 9+ Module support)
|
||||||
|
-->
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.ow2.asm</groupId>
|
||||||
|
<artifactId>asm</artifactId>
|
||||||
|
<version>7.0</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
<configuration>
|
||||||
|
<source>${javac.src.version}</source>
|
||||||
|
<target>${javac.target.version}</target>
|
||||||
|
<showDeprecation>true</showDeprecation>
|
||||||
|
<showWarnings>true</showWarnings>
|
||||||
|
<optimize>true</optimize>
|
||||||
|
<!-- 16-Apr-2013, tatu: As per Nick W's suggestions, let's
|
||||||
|
use these to reduce jar size
|
||||||
|
-->
|
||||||
|
<debug>true</debug>
|
||||||
|
<debuglevel>${javac.debuglevel}</debuglevel>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<version>${version.plugin.enforcer}</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>enforce-java</id>
|
||||||
|
<phase>validate</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>enforce</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<rules>
|
||||||
|
<!-- 08-Aug-2017, tatu: No FX/CTC lib allows 1.5 any more -->
|
||||||
|
<requireJavaVersion>
|
||||||
|
<version>[1.6,)</version>
|
||||||
|
<message>[ERROR] The currently supported version of Java is 1.6 or higher</message>
|
||||||
|
</requireJavaVersion>
|
||||||
|
<requireMavenVersion>
|
||||||
|
<version>[3.0,)</version>
|
||||||
|
<message>[ERROR] The currently supported version of Maven is 3.0 or higher</message>
|
||||||
|
</requireMavenVersion>
|
||||||
|
<requirePluginVersions>
|
||||||
|
<banLatest>true</banLatest>
|
||||||
|
<banRelease>true</banRelease>
|
||||||
|
<banSnapshots>true</banSnapshots>
|
||||||
|
<phases>clean,deploy,site</phases>
|
||||||
|
<message>[ERROR] Best Practice is to always define plugin versions!</message>
|
||||||
|
</requirePluginVersions>
|
||||||
|
</rules>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.felix</groupId>
|
||||||
|
<artifactId>maven-bundle-plugin</artifactId>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>${version.plugin.jar}</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-scm-plugin</artifactId>
|
||||||
|
<version>1.9.1</version>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.maven.scm</groupId>
|
||||||
|
<artifactId>maven-scm-provider-gitexe</artifactId>
|
||||||
|
<version>1.9.1</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-descriptor</id>
|
||||||
|
<goals>
|
||||||
|
<goal>attach-descriptor</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>${version.plugin.surefire}</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
</plugins>
|
||||||
|
|
||||||
|
<extensions>
|
||||||
|
<extension>
|
||||||
|
<groupId>org.apache.maven.scm</groupId>
|
||||||
|
<artifactId>maven-scm-provider-gitexe</artifactId>
|
||||||
|
<version>1.9.1</version>
|
||||||
|
</extension>
|
||||||
|
|
||||||
|
<extension>
|
||||||
|
<groupId>org.apache.maven.scm</groupId>
|
||||||
|
<artifactId>maven-scm-manager-plexus</artifactId>
|
||||||
|
<version>1.9.1</version>
|
||||||
|
</extension>
|
||||||
|
|
||||||
|
<!-- WTH is this? -->
|
||||||
|
<extension>
|
||||||
|
<groupId>org.kathrynhuxtable.maven.wagon</groupId>
|
||||||
|
<artifactId>wagon-gitsite</artifactId>
|
||||||
|
<version>0.3.1</version>
|
||||||
|
</extension>
|
||||||
|
</extensions>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<reporting>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<version>${version.plugin.javadoc}</version>
|
||||||
|
<configuration>
|
||||||
|
<bootclasspath>${sun.boot.class.path}</bootclasspath>
|
||||||
|
<doclet>com.google.doclava.Doclava</doclet>
|
||||||
|
<useStandardDocletOptions>false</useStandardDocletOptions>
|
||||||
|
<additionalJOption>-J-Xmx1024m</additionalJOption>
|
||||||
|
<maxmemory>${javadoc.maxmemory}</maxmemory>
|
||||||
|
<links>
|
||||||
|
<link>http://docs.oracle.com/javase/8/docs/api/</link>
|
||||||
|
</links>
|
||||||
|
<docletArtifact>
|
||||||
|
<groupId>com.google.doclava</groupId>
|
||||||
|
<artifactId>doclava</artifactId>
|
||||||
|
<version>1.0.3</version>
|
||||||
|
</docletArtifact>
|
||||||
|
<additionalparam>
|
||||||
|
-hdf project.name "${project.name}"
|
||||||
|
-d ${project.reporting.outputDirectory}/apidocs
|
||||||
|
</additionalparam>
|
||||||
|
</configuration>
|
||||||
|
<reportSets>
|
||||||
|
<reportSet>
|
||||||
|
<id>default</id>
|
||||||
|
<reports>
|
||||||
|
<report>javadoc</report>
|
||||||
|
</reports>
|
||||||
|
</reportSet>
|
||||||
|
</reportSets>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||||
|
<version>2.5</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-jxr-plugin</artifactId>
|
||||||
|
<version>2.3</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>jdepend-maven-plugin</artifactId>
|
||||||
|
<version>2.0</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||||
|
<version>${version.plugin.surefire}</version>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-pmd-plugin</artifactId>
|
||||||
|
<version>2.7.1</version>
|
||||||
|
<configuration>
|
||||||
|
<linkXref>true</linkXref>
|
||||||
|
<minimumTokens>100</minimumTokens>
|
||||||
|
<targetJdk>1.5</targetJdk>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>taglist-maven-plugin</artifactId>
|
||||||
|
<version>2.4</version>
|
||||||
|
<configuration>
|
||||||
|
<tagListOptions>
|
||||||
|
<tagClasses>
|
||||||
|
<tagClass>
|
||||||
|
<displayName>Todo Work</displayName>
|
||||||
|
<tags>
|
||||||
|
<tag>
|
||||||
|
<matchString>TODO</matchString>
|
||||||
|
<matchType>ignoreCase</matchType>
|
||||||
|
</tag>
|
||||||
|
<tag>
|
||||||
|
<matchString>FIXME</matchString>
|
||||||
|
<matchType>ignoreCase</matchType>
|
||||||
|
</tag>
|
||||||
|
</tags>
|
||||||
|
</tagClass>
|
||||||
|
</tagClasses>
|
||||||
|
</tagListOptions>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</reporting>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>release</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<version>${version.plugin.source}</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-sources</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar-no-fork</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<archive>
|
||||||
|
<manifest>
|
||||||
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
||||||
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
||||||
|
</manifest>
|
||||||
|
<manifestEntries>
|
||||||
|
<Implementation-Build-Date>${maven.build.timestamp}</Implementation-Build-Date>
|
||||||
|
<X-Compile-Source-JDK>${javac.src.version}</X-Compile-Source-JDK>
|
||||||
|
<X-Compile-Target-JDK>${javac.target.version}</X-Compile-Target-JDK>
|
||||||
|
</manifestEntries>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<version>${version.plugin.javadoc}</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-javadocs</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<quiet>true</quiet>
|
||||||
|
<archive>
|
||||||
|
<manifest>
|
||||||
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
||||||
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
||||||
|
</manifest>
|
||||||
|
<manifestEntries>
|
||||||
|
<Implementation-Build-Date>${maven.build.timestamp}</Implementation-Build-Date>
|
||||||
|
<X-Compile-Source-JDK>${javac.src.version}</X-Compile-Source-JDK>
|
||||||
|
<X-Compile-Target-JDK>${javac.target.version}</X-Compile-Target-JDK>
|
||||||
|
</manifestEntries>
|
||||||
|
</archive>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>sign-artifacts</id>
|
||||||
|
<phase>verify</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>sign</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,155 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!--
|
||||||
|
~ Copyright (c) 2007-2011 Sonatype, Inc. All rights reserved.
|
||||||
|
~
|
||||||
|
~ This program is licensed to you under the Apache License Version 2.0,
|
||||||
|
~ and you may not use this file except in compliance with the Apache License Version 2.0.
|
||||||
|
~ You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
|
||||||
|
~
|
||||||
|
~ Unless required by applicable law or agreed to in writing,
|
||||||
|
~ software distributed under the Apache License Version 2.0 is distributed on an
|
||||||
|
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
~ See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
|
||||||
|
-->
|
||||||
|
<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>
|
||||||
|
|
||||||
|
<groupId>org.sonatype.oss</groupId>
|
||||||
|
<artifactId>oss-parent</artifactId>
|
||||||
|
<version>7</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>Sonatype OSS Parent</name>
|
||||||
|
<url>http://nexus.sonatype.org/oss-repository-hosting.html</url>
|
||||||
|
<description>Sonatype helps open source projects to set up Maven repositories on https://oss.sonatype.org/ </description>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:svn:http://svn.sonatype.org/spice/tags/oss-parent-7</connection>
|
||||||
|
<developerConnection>scm:svn:https://svn.sonatype.org/spice/tags/oss-parent-7</developerConnection>
|
||||||
|
<url>http://svn.sonatype.org/spice/tags/oss-parent-7</url>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>sonatype-nexus-snapshots</id>
|
||||||
|
<name>Sonatype Nexus Snapshots</name>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>sonatype-nexus-snapshots</id>
|
||||||
|
<name>Sonatype Nexus Snapshots</name>
|
||||||
|
<url>${sonatypeOssDistMgmtSnapshotsUrl}</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
<repository>
|
||||||
|
<id>sonatype-nexus-staging</id>
|
||||||
|
<name>Nexus Release Repository</name>
|
||||||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||||
|
</repository>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>enforce-maven</id>
|
||||||
|
<goals>
|
||||||
|
<goal>enforce</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<rules>
|
||||||
|
<requireMavenVersion>
|
||||||
|
<version>(,2.1.0),(2.1.0,2.2.0),(2.2.0,)</version>
|
||||||
|
<message>Maven 2.1.0 and 2.2.0 produce incorrect GPG signatures and checksums respectively.</message>
|
||||||
|
</requireMavenVersion>
|
||||||
|
</rules>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<version>2.1</version>
|
||||||
|
<configuration>
|
||||||
|
<mavenExecutorId>forked-path</mavenExecutorId>
|
||||||
|
<useReleaseProfile>false</useReleaseProfile>
|
||||||
|
<arguments>-Psonatype-oss-release</arguments>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<sonatypeOssDistMgmtSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</sonatypeOssDistMgmtSnapshotsUrl>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>sonatype-oss-release</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<version>2.1.2</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-sources</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar-no-fork</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<version>2.7</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-javadocs</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
|
<version>1.1</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>sign-artifacts</id>
|
||||||
|
<phase>verify</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>sign</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,304 @@
|
|||||||
|
<?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">
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>parent</artifactId>
|
||||||
|
<version>0.15.0</version>
|
||||||
|
|
||||||
|
<name>Prometheus Java Suite</name>
|
||||||
|
<url>http://github.com/prometheus/client_java</url>
|
||||||
|
<description>
|
||||||
|
The Prometheus Java Suite: Client Metrics, Exposition, and Examples
|
||||||
|
</description>
|
||||||
|
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git@github.com:prometheus/client_java.git</connection>
|
||||||
|
<developerConnection>scm:git:git@github.com:prometheus/client_java.git</developerConnection>
|
||||||
|
<url>git@github.com:prometheus/client_java.git</url>
|
||||||
|
<tag>parent-0.15.0</tag>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>mtp</id>
|
||||||
|
<name>Matt T. Proud</name>
|
||||||
|
<email>matt.proud@gmail.com</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
|
<modules>
|
||||||
|
<module>simpleclient</module>
|
||||||
|
<module>simpleclient_common</module>
|
||||||
|
<module>simpleclient_caffeine</module>
|
||||||
|
<module>simpleclient_dropwizard</module>
|
||||||
|
<module>simpleclient_graphite_bridge</module>
|
||||||
|
<module>simpleclient_hibernate</module>
|
||||||
|
<module>simpleclient_guava</module>
|
||||||
|
<module>simpleclient_hotspot</module>
|
||||||
|
<module>simpleclient_httpserver</module>
|
||||||
|
<module>simpleclient_log4j</module>
|
||||||
|
<module>simpleclient_log4j2</module>
|
||||||
|
<module>simpleclient_logback</module>
|
||||||
|
<module>simpleclient_pushgateway</module>
|
||||||
|
<module>simpleclient_servlet</module>
|
||||||
|
<module>simpleclient_servlet_common</module>
|
||||||
|
<module>simpleclient_servlet_jakarta</module>
|
||||||
|
<module>simpleclient_spring_web</module>
|
||||||
|
<module>simpleclient_spring_boot</module>
|
||||||
|
<module>simpleclient_jetty</module>
|
||||||
|
<module>simpleclient_jetty_jdk8</module>
|
||||||
|
<module>simpleclient_tracer</module>
|
||||||
|
<module>simpleclient_vertx</module>
|
||||||
|
<module>simpleclient_bom</module>
|
||||||
|
<module>benchmarks</module>
|
||||||
|
<module>integration_tests</module>
|
||||||
|
</modules>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>ossrh</id>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
<repository>
|
||||||
|
<id>ossrh</id>
|
||||||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||||
|
</repository>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<!-- Add plugin versions for reproducible builds. Versions for default bindings are taken from -->
|
||||||
|
<!-- https://github.com/apache/maven/tree/maven-3.8.1/maven-core/src/main/resources/META-INF/plexus -->
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-install-plugin</artifactId>
|
||||||
|
<version>2.4</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-resources-plugin</artifactId>
|
||||||
|
<version>2.6</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<version>3.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>2.12.4</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
|
<version>2.4</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
|
<version>2.7</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-clean-plugin</artifactId>
|
||||||
|
<version>2.5</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<version>3.3</version>
|
||||||
|
</plugin>
|
||||||
|
<!-- Plugins with groupId org.apache.maven.plugins that are not part of default bindings. -->
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-shade-plugin</artifactId>
|
||||||
|
<version>3.2.4</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-failsafe-plugin</artifactId>
|
||||||
|
<version>2.22.2</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<version>2.5.3</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-dependency-plugin</artifactId>
|
||||||
|
<version>3.1.2</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<version>3.3.0</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
|
<version>3.0.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<version>3.2.1</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<version>1.4.1</version>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>enforce-plugin-versions</id>
|
||||||
|
<goals>
|
||||||
|
<goal>enforce</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<rules>
|
||||||
|
<requirePluginVersions>
|
||||||
|
<unCheckedPluginList>org.springframework.boot:spring-boot-maven-plugin
|
||||||
|
</unCheckedPluginList>
|
||||||
|
</requirePluginVersions>
|
||||||
|
</rules>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
||||||
|
<useReleaseProfile>false</useReleaseProfile>
|
||||||
|
<releaseProfiles>release</releaseProfiles>
|
||||||
|
<goals>deploy</goals>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.felix</groupId>
|
||||||
|
<artifactId>maven-bundle-plugin</artifactId>
|
||||||
|
<version>2.4.0</version>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<encoding>UTF-8</encoding>
|
||||||
|
<docencoding>UTF-8</docencoding>
|
||||||
|
<linksource>true</linksource>
|
||||||
|
<source>8</source>
|
||||||
|
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>generate-javadoc-site-report</id>
|
||||||
|
<phase>site</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>aggregate</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<source>1.6</source>
|
||||||
|
<target>1.6</target>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<reporting>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<!-- maven-site-plugin 3.3 requires maven-project-info-reports-plugin < 3.0 -->
|
||||||
|
<artifactId>maven-project-info-reports-plugin</artifactId>
|
||||||
|
<version>2.9</version>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<reportSets>
|
||||||
|
<reportSet>
|
||||||
|
<id>aggregate</id>
|
||||||
|
<inherited>false</inherited>
|
||||||
|
<reports>
|
||||||
|
<report>aggregate</report>
|
||||||
|
</reports>
|
||||||
|
</reportSet>
|
||||||
|
<reportSet>
|
||||||
|
<id>default</id>
|
||||||
|
<reports>
|
||||||
|
<report>javadoc</report>
|
||||||
|
</reports>
|
||||||
|
</reportSet>
|
||||||
|
</reportSets>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</reporting>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<profile>
|
||||||
|
<id>release</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>sign-artifacts</id>
|
||||||
|
<phase>verify</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>sign</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-sources</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar-no-fork</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-javadocs</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,313 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!--
|
||||||
|
|
||||||
|
Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
|
||||||
|
|
||||||
|
This program and the accompanying materials are made available under the
|
||||||
|
terms of the Eclipse Public License v. 2.0, which is available at
|
||||||
|
http://www.eclipse.org/legal/epl-2.0.
|
||||||
|
|
||||||
|
This Source Code may also be made available under the following Secondary
|
||||||
|
Licenses when the conditions for such availability set forth in the
|
||||||
|
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
|
||||||
|
version 2 with the GNU Classpath Exception, which is available at
|
||||||
|
https://www.gnu.org/software/classpath/license.html.
|
||||||
|
|
||||||
|
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
|
||||||
|
|
||||||
|
-->
|
||||||
|
|
||||||
|
<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>
|
||||||
|
<groupId>org.eclipse.ee4j</groupId>
|
||||||
|
<artifactId>project</artifactId>
|
||||||
|
<version>1.0.6</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>EE4J Project</name>
|
||||||
|
<url>https://projects.eclipse.org/projects/ee4j</url>
|
||||||
|
<description>
|
||||||
|
Eclipse Enterprise for Java (EE4J) is an open source initiative to create standard APIs,
|
||||||
|
implementations of those APIs, and technology compatibility kits for Java runtimes
|
||||||
|
that enable development, deployment, and management of server-side and cloud-native applications.
|
||||||
|
</description>
|
||||||
|
|
||||||
|
<organization>
|
||||||
|
<name>Eclipse Foundation</name>
|
||||||
|
<url>https://www.eclipse.org</url>
|
||||||
|
</organization>
|
||||||
|
<inceptionYear>2017</inceptionYear>
|
||||||
|
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>eclipseee4j</id>
|
||||||
|
<name>Eclipse EE4J Developers</name>
|
||||||
|
<organization>Eclipse Foundation</organization>
|
||||||
|
<email>ee4j-pmc@eclipse.org</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Eclipse Public License v. 2.0</name>
|
||||||
|
<url>https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
<license>
|
||||||
|
<name>GNU General Public License, version 2 with the GNU Classpath Exception</name>
|
||||||
|
<url>https://www.gnu.org/software/classpath/license.html</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
<issueManagement>
|
||||||
|
<system>GitHub Issues</system>
|
||||||
|
<url>https://github.com/eclipse-ee4j/ee4j/issues</url>
|
||||||
|
</issueManagement>
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git@github.com:eclipse-ee4j/ee4j.git</connection>
|
||||||
|
<developerConnection>scm:git:git@github.com:eclipse-ee4j/ee4j.git</developerConnection>
|
||||||
|
<url>https://github.com/eclipse-ee4j/ee4j</url>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<mailingLists>
|
||||||
|
<mailingList>
|
||||||
|
<name>Community discussions</name>
|
||||||
|
<post>jakarta.ee-community@eclipse.org</post>
|
||||||
|
<subscribe>https://accounts.eclipse.org/mailing-list/jakarta.ee-community</subscribe>
|
||||||
|
<unsubscribe>https://accounts.eclipse.org/mailing-list/jakarta.ee-community</unsubscribe>
|
||||||
|
<archive>https://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/</archive>
|
||||||
|
<otherArchives>
|
||||||
|
<otherArchive>http://dev.eclipse.org/mhonarc/lists/jakarta.ee-community/maillist.rss</otherArchive>
|
||||||
|
</otherArchives>
|
||||||
|
</mailingList>
|
||||||
|
<mailingList>
|
||||||
|
<name>PMC discussions</name>
|
||||||
|
<post>ee4j-pmc@eclipse.org</post>
|
||||||
|
<subscribe>https://accounts.eclipse.org/mailing-list/ee4j-pmc</subscribe>
|
||||||
|
<unsubscribe>https://accounts.eclipse.org/mailing-list/ee4j-pmc</unsubscribe>
|
||||||
|
<archive>https://dev.eclipse.org/mhonarc/lists/ee4j-pmc/</archive>
|
||||||
|
<otherArchives>
|
||||||
|
<otherArchive>http://dev.eclipse.org/mhonarc/lists/ee4j-pmc/maillist.rss</otherArchive>
|
||||||
|
</otherArchives>
|
||||||
|
</mailingList>
|
||||||
|
</mailingLists>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<sonatypeOssDistMgmtNexusUrl>https://jakarta.oss.sonatype.org/</sonatypeOssDistMgmtNexusUrl>
|
||||||
|
<sonatypeOssDistMgmtSnapshotsUrl>${sonatypeOssDistMgmtNexusUrl}content/repositories/snapshots/</sonatypeOssDistMgmtSnapshotsUrl>
|
||||||
|
<sonatypeOssDistMgmtStagingUrl>${sonatypeOssDistMgmtNexusUrl}content/repositories/staging/</sonatypeOssDistMgmtStagingUrl>
|
||||||
|
<sonatypeOssDistMgmtReleasesUrl>${sonatypeOssDistMgmtNexusUrl}service/local/staging/deploy/maven2/</sonatypeOssDistMgmtReleasesUrl>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<!--
|
||||||
|
Initialize release.arguments to empty, otherwise if not defined
|
||||||
|
it can fail the release plugin.
|
||||||
|
-->
|
||||||
|
<release.arguments></release.arguments>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>ossrh</id>
|
||||||
|
<name>Sonatype Nexus Snapshots</name>
|
||||||
|
<url>${sonatypeOssDistMgmtSnapshotsUrl}</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
<repository>
|
||||||
|
<id>ossrh</id>
|
||||||
|
<name>Sonatype Nexus Releases</name>
|
||||||
|
<url>${sonatypeOssDistMgmtReleasesUrl}</url>
|
||||||
|
</repository>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<version>2.5.3</version>
|
||||||
|
<configuration>
|
||||||
|
<mavenExecutorId>forked-path</mavenExecutorId>
|
||||||
|
<useReleaseProfile>false</useReleaseProfile>
|
||||||
|
<arguments>-Poss-release ${release.arguments}</arguments>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.sonatype.plugins</groupId>
|
||||||
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||||||
|
<version>1.6.8</version>
|
||||||
|
<configuration>
|
||||||
|
<serverId>ossrh</serverId>
|
||||||
|
<nexusUrl>${sonatypeOssDistMgmtNexusUrl}</nexusUrl>
|
||||||
|
<autoReleaseAfterClose>false</autoReleaseAfterClose>
|
||||||
|
<!-- Skip based on the maven.deploy.skip property -->
|
||||||
|
<skipNexusStagingDeployMojo>${maven.deploy.skip}</skipNexusStagingDeployMojo>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<!--
|
||||||
|
This profile provides configuration for the plugins that are required are in
|
||||||
|
order to deploy non SNAPSHOT artifacts.
|
||||||
|
SNAPSHOT artifacts can be deployed without using any profile.
|
||||||
|
-->
|
||||||
|
<profile>
|
||||||
|
<id>oss-release</id>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-enforcer-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>enforce-maven</id>
|
||||||
|
<goals>
|
||||||
|
<goal>enforce</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<rules>
|
||||||
|
<requireMavenVersion>
|
||||||
|
<version>[3.0.4,)</version>
|
||||||
|
<message>Maven 3.0 through 3.0.3 inclusive does not pass
|
||||||
|
correct settings.xml to Maven Release Plugin.</message>
|
||||||
|
</requireMavenVersion>
|
||||||
|
</rules>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-sources</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar-no-fork</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-javadocs</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
|
<!-- Older versions have issues with the gpg passphrase -->
|
||||||
|
<version>1.6</version>
|
||||||
|
<configuration>
|
||||||
|
<gpgArguments>
|
||||||
|
<arg>--pinentry-mode</arg>
|
||||||
|
<arg>loopback</arg>
|
||||||
|
</gpgArguments>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>sign-artifacts</id>
|
||||||
|
<phase>verify</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>sign</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.sonatype.plugins</groupId>
|
||||||
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</profile>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
This profile enables consuming snapshot artifacts from the ossrh
|
||||||
|
snapshots repository.
|
||||||
|
-->
|
||||||
|
<profile>
|
||||||
|
<id>snapshots</id>
|
||||||
|
<activation>
|
||||||
|
<activeByDefault>false</activeByDefault>
|
||||||
|
</activation>
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>sonatype-nexus-snapshots</id>
|
||||||
|
<name>Sonatype Nexus Snapshots</name>
|
||||||
|
<url>${sonatypeOssDistMgmtSnapshotsUrl}</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>sonatype-nexus-snapshots</id>
|
||||||
|
<name>Sonatype Nexus Snapshots</name>
|
||||||
|
<url>${sonatypeOssDistMgmtSnapshotsUrl}</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
</profile>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
This profile enables consuming artifacts from the ossrh staging
|
||||||
|
repository group.
|
||||||
|
-->
|
||||||
|
<profile>
|
||||||
|
<id>staging</id>
|
||||||
|
<activation>
|
||||||
|
<activeByDefault>false</activeByDefault>
|
||||||
|
</activation>
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>sonatype-nexus-staging</id>
|
||||||
|
<name>Sonatype Nexus Staging</name>
|
||||||
|
<url>${sonatypeOssDistMgmtStagingUrl}</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>sonatype-nexus-staging</id>
|
||||||
|
<name>Sonatype Nexus Staging</name>
|
||||||
|
<url>${sonatypeOssDistMgmtStagingUrl}</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,217 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>com.querydsl</groupId>
|
||||||
|
<artifactId>querydsl-bom</artifactId>
|
||||||
|
<version>5.0.0</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>Querydsl - Bill of materials</name>
|
||||||
|
<description>Bill of materials</description>
|
||||||
|
<url>http://www.querydsl.com</url>
|
||||||
|
<inceptionYear>2007</inceptionYear>
|
||||||
|
<organization>
|
||||||
|
<name>Querydsl</name>
|
||||||
|
<url>http://www.querydsl.com</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License, Version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>timowest</id>
|
||||||
|
<name>Timo Westkämper</name>
|
||||||
|
<organization>Mysema Ltd</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Project Manager</role>
|
||||||
|
<role>Architect</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>ssaarela</id>
|
||||||
|
<name>Samppa Saarela</name>
|
||||||
|
<organization>Mysema Ltd</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>ponzao</id>
|
||||||
|
<name>Vesa Marttila</name>
|
||||||
|
<organization>Mysema Ltd</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>mangolas</id>
|
||||||
|
<name>Lassi Immonen</name>
|
||||||
|
<organization>Mysema Ltd</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>Shredder121</id>
|
||||||
|
<name>Ruben Dijkstra</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>johnktims</id>
|
||||||
|
<name>John Tims</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>robertandrewbain</id>
|
||||||
|
<name>Robert Bain</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>jwgmeligmeyling</id>
|
||||||
|
<name>Jan-Willem Gmelig Meyling</name>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git@github.com:querydsl/querydsl.git/querydsl-bom</connection>
|
||||||
|
<developerConnection>scm:git:git@github.com:querydsl/querydsl.git/querydsl-bom</developerConnection>
|
||||||
|
<url>http://github.com/querydsl/querydsl/querydsl-bom</url>
|
||||||
|
</scm>
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<id>sonatype-nexus-staging</id>
|
||||||
|
<name>Nexus Release Repository</name>
|
||||||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||||
|
</repository>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>sonatype-nexus-snapshots</id>
|
||||||
|
<name>Sonatype Nexus Snapshots</name>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
</distributionManagement>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-core</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-codegen</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-codegen-utils</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-spatial</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-apt</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-collections</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-guava</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-sql</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-sql-spatial</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-sql-codegen</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-sql-spring</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-jpa</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-jpa-codegen</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-jdo</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-kotlin-codegen</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-lucene3</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-lucene4</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-lucene5</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-hibernate-search</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-mongodb</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-scala</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>${project.groupId}</groupId>
|
||||||
|
<artifactId>querydsl-kotlin</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,99 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!--
|
||||||
|
~ Copyright 2017-2021 the original author or authors.
|
||||||
|
~
|
||||||
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
~ you may not use this file except in compliance with the License.
|
||||||
|
~ You may obtain a copy of the License at
|
||||||
|
~
|
||||||
|
~ https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
~
|
||||||
|
~ Unless required by applicable law or agreed to in writing, software
|
||||||
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
~ See the License for the specific language governing permissions and
|
||||||
|
~ limitations under the License.
|
||||||
|
-->
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>io.r2dbc</groupId>
|
||||||
|
<artifactId>r2dbc-bom</artifactId>
|
||||||
|
<version>Borca-SR2</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>Reactive Relational Database Connectivity - Bill of Materials</name>
|
||||||
|
<description>Dependency Management for R2DBC Drivers</description>
|
||||||
|
<url>https://github.com/r2dbc/r2dbc-bom</url>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<name>R2DBC Working Group</name>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:https://github.com/r2dbc/r2dbc-bom</connection>
|
||||||
|
<url>https://github.com/r2dbc/r2dbc-bom</url>
|
||||||
|
</scm>
|
||||||
|
<properties>
|
||||||
|
<r2dbc-pool.version>0.9.2.RELEASE</r2dbc-pool.version>
|
||||||
|
<r2dbc-proxy.version>0.9.1.RELEASE</r2dbc-proxy.version>
|
||||||
|
<r2dbc-mssql.version>0.9.0.RELEASE</r2dbc-mssql.version>
|
||||||
|
<r2dbc-oracle.version>0.4.0</r2dbc-oracle.version>
|
||||||
|
<r2dbc-postgresql.version>0.9.2.RELEASE</r2dbc-postgresql.version>
|
||||||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<r2dbc-h2.version>0.9.1.RELEASE</r2dbc-h2.version>
|
||||||
|
<r2dbc-spi.version>0.9.1.RELEASE</r2dbc-spi.version>
|
||||||
|
<r2dbc-mariadb.version>1.1.2</r2dbc-mariadb.version>
|
||||||
|
</properties>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.oracle.database.r2dbc</groupId>
|
||||||
|
<artifactId>oracle-r2dbc</artifactId>
|
||||||
|
<version>${r2dbc-oracle.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.r2dbc</groupId>
|
||||||
|
<artifactId>r2dbc-h2</artifactId>
|
||||||
|
<version>${r2dbc-h2.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mariadb</groupId>
|
||||||
|
<artifactId>r2dbc-mariadb</artifactId>
|
||||||
|
<version>${r2dbc-mariadb.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.r2dbc</groupId>
|
||||||
|
<artifactId>r2dbc-mssql</artifactId>
|
||||||
|
<version>${r2dbc-mssql.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.postgresql</groupId>
|
||||||
|
<artifactId>r2dbc-postgresql</artifactId>
|
||||||
|
<version>${r2dbc-postgresql.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.r2dbc</groupId>
|
||||||
|
<artifactId>r2dbc-pool</artifactId>
|
||||||
|
<version>${r2dbc-pool.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.r2dbc</groupId>
|
||||||
|
<artifactId>r2dbc-proxy</artifactId>
|
||||||
|
<version>${r2dbc-proxy.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.r2dbc</groupId>
|
||||||
|
<artifactId>r2dbc-spi</artifactId>
|
||||||
|
<version>${r2dbc-spi.version}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,128 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<!-- This module was also published with a richer model, Gradle metadata, -->
|
||||||
|
<!-- which should be used instead. Do not delete the following line which -->
|
||||||
|
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
||||||
|
<!-- that they should prefer consuming it instead. -->
|
||||||
|
<!-- do_not_remove: published-with-gradle-metadata -->
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>io.projectreactor</groupId>
|
||||||
|
<artifactId>reactor-bom</artifactId>
|
||||||
|
<version>2020.0.37</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>Project Reactor 3 Release Train - BOM</name>
|
||||||
|
<description>Bill of materials to make sure a consistent set of versions is used for Reactor 3.</description>
|
||||||
|
<url>https://projectreactor.io</url>
|
||||||
|
<organization>
|
||||||
|
<name>reactor</name>
|
||||||
|
<url>https://github.com/reactor</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>simonbasle</id>
|
||||||
|
<name>Simon Baslé</name>
|
||||||
|
<email>sbasle at vmware.com</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>violetagg</id>
|
||||||
|
<name>Violeta Georgieva</name>
|
||||||
|
<email>violetag at vmware.com</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>odokuka</id>
|
||||||
|
<name>Oleh Dokuka</name>
|
||||||
|
<email>odokuka at vmware.com</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/reactor/reactor</connection>
|
||||||
|
<developerConnection>scm:git:git://github.com/reactor/reactor</developerConnection>
|
||||||
|
<url>https://github.com/reactor/reactor</url>
|
||||||
|
</scm>
|
||||||
|
<issueManagement>
|
||||||
|
<system>GitHub Issues</system>
|
||||||
|
<url>https://github.com/reactor</url>
|
||||||
|
</issueManagement>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.reactivestreams</groupId>
|
||||||
|
<artifactId>reactive-streams</artifactId>
|
||||||
|
<version>1.0.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.projectreactor</groupId>
|
||||||
|
<artifactId>reactor-core</artifactId>
|
||||||
|
<version>3.4.33</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.projectreactor</groupId>
|
||||||
|
<artifactId>reactor-test</artifactId>
|
||||||
|
<version>3.4.33</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.projectreactor</groupId>
|
||||||
|
<artifactId>reactor-tools</artifactId>
|
||||||
|
<version>3.4.33</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.projectreactor.addons</groupId>
|
||||||
|
<artifactId>reactor-extra</artifactId>
|
||||||
|
<version>3.4.10</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.projectreactor.addons</groupId>
|
||||||
|
<artifactId>reactor-adapter</artifactId>
|
||||||
|
<version>3.4.10</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.projectreactor.netty</groupId>
|
||||||
|
<artifactId>reactor-netty</artifactId>
|
||||||
|
<version>1.0.38</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.projectreactor.netty</groupId>
|
||||||
|
<artifactId>reactor-netty-core</artifactId>
|
||||||
|
<version>1.0.38</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.projectreactor.netty</groupId>
|
||||||
|
<artifactId>reactor-netty-http</artifactId>
|
||||||
|
<version>1.0.38</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.projectreactor.netty</groupId>
|
||||||
|
<artifactId>reactor-netty-http-brave</artifactId>
|
||||||
|
<version>1.0.38</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.projectreactor.addons</groupId>
|
||||||
|
<artifactId>reactor-pool</artifactId>
|
||||||
|
<version>0.2.12</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.projectreactor.kafka</groupId>
|
||||||
|
<artifactId>reactor-kafka</artifactId>
|
||||||
|
<version>1.3.21</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.projectreactor.rabbitmq</groupId>
|
||||||
|
<artifactId>reactor-rabbitmq</artifactId>
|
||||||
|
<version>1.5.6</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.projectreactor.kotlin</groupId>
|
||||||
|
<artifactId>reactor-kotlin-extensions</artifactId>
|
||||||
|
<version>1.1.10</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,149 @@
|
|||||||
|
<?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/maven-v4_0_0.xsd">
|
||||||
|
|
||||||
|
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>rest-assured-bom</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
<name>REST Assured: BOM</name>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<description>Centralized dependencyManagement for the Rest Assured Project</description>
|
||||||
|
|
||||||
|
<url>http://code.google.com/p/rest-assured</url>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/rest-assured/rest-assured.git</connection>
|
||||||
|
<developerConnection>scm:git:ssh://git@github.com/rest-assured/rest-assured.git</developerConnection>
|
||||||
|
<url>http://github.com/rest-assured/rest-assured/tree/master</url>
|
||||||
|
<tag>HEAD</tag>
|
||||||
|
</scm>
|
||||||
|
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>johan.haleby</id>
|
||||||
|
<name>Johan Haleby</name>
|
||||||
|
<email>johan.haleby at gmail.com</email>
|
||||||
|
<organization>Jayway</organization>
|
||||||
|
<organizationUrl>http://www.jayway.com</organizationUrl>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>json-schema-validator</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>rest-assured-common</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>json-path</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>xml-path</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>rest-assured</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>spring-commons</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>spring-mock-mvc</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>scala-support</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>spring-web-test-client</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>kotlin-extensions</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>spring-mock-mvc-kotlin-extensions</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured</groupId>
|
||||||
|
<artifactId>rest-assured-all</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured.examples</groupId>
|
||||||
|
<artifactId>scalatra-example</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured.examples</groupId>
|
||||||
|
<artifactId>scalatra-webapp</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
<type>war</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured.examples</groupId>
|
||||||
|
<artifactId>rest-assured-itest-java</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured.examples</groupId>
|
||||||
|
<artifactId>spring-mvc-webapp</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
<type>war</type>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured.examples</groupId>
|
||||||
|
<artifactId>scala-example</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured.examples</groupId>
|
||||||
|
<artifactId>scala-mock-mvc-example</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rest-assured.examples</groupId>
|
||||||
|
<artifactId>kotlin-example</artifactId>
|
||||||
|
<version>4.5.1</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,79 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>io.rsocket</groupId>
|
||||||
|
<artifactId>rsocket-bom</artifactId>
|
||||||
|
<version>1.1.3</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>rsocket-bom</name>
|
||||||
|
<description>RSocket Java Bill of materials.</description>
|
||||||
|
<url>http://rsocket.io</url>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>rdegnan</id>
|
||||||
|
<name>Ryland Degnan</name>
|
||||||
|
<email>ryland@netifi.com</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>yschimke</id>
|
||||||
|
<name>Yuri Schimke</name>
|
||||||
|
<email>yuri@schimke.ee</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>OlegDokuka</id>
|
||||||
|
<name>Oleh Dokuka</name>
|
||||||
|
<email>oleh.dokuka@icloud.com</email>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>rstoyanchev</id>
|
||||||
|
<name>Rossen Stoyanchev</name>
|
||||||
|
<email>rstoyanchev@vmware.com</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:https://github.com/rsocket/rsocket-java.git</connection>
|
||||||
|
<developerConnection>scm:git:https://github.com/rsocket/rsocket-java.git</developerConnection>
|
||||||
|
<url>https://github.com/rsocket/rsocket-java</url>
|
||||||
|
</scm>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rsocket</groupId>
|
||||||
|
<artifactId>rsocket-core</artifactId>
|
||||||
|
<version>1.1.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rsocket</groupId>
|
||||||
|
<artifactId>rsocket-load-balancer</artifactId>
|
||||||
|
<version>1.1.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rsocket</groupId>
|
||||||
|
<artifactId>rsocket-micrometer</artifactId>
|
||||||
|
<version>1.1.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rsocket</groupId>
|
||||||
|
<artifactId>rsocket-test</artifactId>
|
||||||
|
<version>1.1.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rsocket</groupId>
|
||||||
|
<artifactId>rsocket-transport-local</artifactId>
|
||||||
|
<version>1.1.3</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.rsocket</groupId>
|
||||||
|
<artifactId>rsocket-transport-netty</artifactId>
|
||||||
|
<version>1.1.3</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,141 @@
|
|||||||
|
<?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>io.prometheus</groupId>
|
||||||
|
<artifactId>parent</artifactId>
|
||||||
|
<version>0.15.0</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<artifactId>simpleclient_bom</artifactId>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
<name>Prometheus Java Simpleclient BOM</name>
|
||||||
|
<description>
|
||||||
|
Bill of Materials for the Simpleclient.
|
||||||
|
</description>
|
||||||
|
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>The Apache Software License, Version 2.0</name>
|
||||||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_caffeine</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_common</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_dropwizard</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_graphite_bridge</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_guava</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_hibernate</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_hotspot</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_httpserver</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_jetty</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_jetty_jdk8</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_log4j</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_log4j2</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_logback</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_pushgateway</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_servlet</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_servlet_jakarta</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_spring_boot</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_spring_web</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_tracer_otel</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_tracer_otel_agent</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.prometheus</groupId>
|
||||||
|
<artifactId>simpleclient_vertx</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -0,0 +1,75 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<!-- This module was also published with a richer model, Gradle metadata, -->
|
||||||
|
<!-- which should be used instead. Do not delete the following line which -->
|
||||||
|
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
||||||
|
<!-- that they should prefer consuming it instead. -->
|
||||||
|
<!-- do_not_remove: published-with-gradle-metadata -->
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-gradle-plugin</artifactId>
|
||||||
|
<version>2.7.17</version>
|
||||||
|
<name>spring-boot-gradle-plugin</name>
|
||||||
|
<description>Spring Boot Gradle Plugin</description>
|
||||||
|
<url>https://spring.io/projects/spring-boot</url>
|
||||||
|
<organization>
|
||||||
|
<name>VMware, Inc.</name>
|
||||||
|
<url>https://spring.io</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License, Version 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<name>Spring</name>
|
||||||
|
<email>ask@spring.io</email>
|
||||||
|
<organization>VMware, Inc.</organization>
|
||||||
|
<organizationUrl>https://www.spring.io</organizationUrl>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/spring-projects/spring-boot.git</connection>
|
||||||
|
<developerConnection>scm:git:ssh://git@github.com/spring-projects/spring-boot.git</developerConnection>
|
||||||
|
<url>https://github.com/spring-projects/spring-boot</url>
|
||||||
|
</scm>
|
||||||
|
<issueManagement>
|
||||||
|
<system>GitHub</system>
|
||||||
|
<url>https://github.com/spring-projects/spring-boot/issues</url>
|
||||||
|
</issueManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-buildpack-platform</artifactId>
|
||||||
|
<version>2.7.17</version>
|
||||||
|
<scope>runtime</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-loader-tools</artifactId>
|
||||||
|
<version>2.7.17</version>
|
||||||
|
<scope>runtime</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>io.spring.gradle</groupId>
|
||||||
|
<artifactId>dependency-management-plugin</artifactId>
|
||||||
|
<version>1.0.15.RELEASE</version>
|
||||||
|
<scope>runtime</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.commons</groupId>
|
||||||
|
<artifactId>commons-compress</artifactId>
|
||||||
|
<version>1.21</version>
|
||||||
|
<scope>runtime</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-core</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
<scope>runtime</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</project>
|
||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,153 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-bom</artifactId>
|
||||||
|
<version>2021.2.17</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>Spring Data Release Train - BOM</name>
|
||||||
|
<description>Bill of materials to make sure a consistent set of versions is used for
|
||||||
|
Spring Data modules.</description>
|
||||||
|
<url>https://github.com/spring-projects/spring-data-bom</url>
|
||||||
|
<organization>
|
||||||
|
<name>Pivotal Software, Inc.</name>
|
||||||
|
<url>https://www.spring.io</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License, Version 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
||||||
|
<comments>Copyright 2010 the original author or authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.</comments>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>mpaluch</id>
|
||||||
|
<name>Mark Paluch</name>
|
||||||
|
<email>mpaluch at pivotal.io</email>
|
||||||
|
<organization>Pivotal Software, Inc.</organization>
|
||||||
|
<organizationUrl>https://www.spring.io</organizationUrl>
|
||||||
|
<roles>
|
||||||
|
<role>Project lead</role>
|
||||||
|
</roles>
|
||||||
|
<timezone>+1</timezone>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/spring-projects/spring-data-bom.git</connection>
|
||||||
|
<developerConnection>scm:git:ssh://git@github.com:spring-projects/spring-data-bom.git</developerConnection>
|
||||||
|
<url>https://github.com/spring-projects/spring-data-bom</url>
|
||||||
|
</scm>
|
||||||
|
<issueManagement>
|
||||||
|
<system>GitHub</system>
|
||||||
|
<url>https://github.com/spring-projects/spring-data-bom/issues</url>
|
||||||
|
</issueManagement>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-cassandra</artifactId>
|
||||||
|
<version>3.4.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-commons</artifactId>
|
||||||
|
<version>2.7.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-couchbase</artifactId>
|
||||||
|
<version>4.4.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-elasticsearch</artifactId>
|
||||||
|
<version>4.4.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-geode</artifactId>
|
||||||
|
<version>2.7.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-jdbc</artifactId>
|
||||||
|
<version>2.4.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-relational</artifactId>
|
||||||
|
<version>2.4.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-jpa</artifactId>
|
||||||
|
<version>2.7.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-mongodb</artifactId>
|
||||||
|
<version>3.4.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-neo4j</artifactId>
|
||||||
|
<version>6.3.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-r2dbc</artifactId>
|
||||||
|
<version>1.5.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-redis</artifactId>
|
||||||
|
<version>2.7.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-rest-webmvc</artifactId>
|
||||||
|
<version>3.7.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-rest-core</artifactId>
|
||||||
|
<version>3.7.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-rest-hal-explorer</artifactId>
|
||||||
|
<version>3.7.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-keyvalue</artifactId>
|
||||||
|
<version>2.7.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-envers</artifactId>
|
||||||
|
<version>2.7.17</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.data</groupId>
|
||||||
|
<artifactId>spring-data-ldap</artifactId>
|
||||||
|
<version>2.7.17</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<!-- This module was also published with a richer model, Gradle metadata, -->
|
||||||
|
<!-- which should be used instead. Do not delete the following line which -->
|
||||||
|
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
||||||
|
<!-- that they should prefer consuming it instead. -->
|
||||||
|
<!-- do_not_remove: published-with-gradle-metadata -->
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-framework-bom</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>Spring Framework (Bill of Materials)</name>
|
||||||
|
<description>Spring Framework (Bill of Materials)</description>
|
||||||
|
<url>https://github.com/spring-projects/spring-framework</url>
|
||||||
|
<organization>
|
||||||
|
<name>Spring IO</name>
|
||||||
|
<url>https://spring.io/projects/spring-framework</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License, Version 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>jhoeller</id>
|
||||||
|
<name>Juergen Hoeller</name>
|
||||||
|
<email>jhoeller@pivotal.io</email>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/spring-projects/spring-framework</connection>
|
||||||
|
<developerConnection>scm:git:git://github.com/spring-projects/spring-framework</developerConnection>
|
||||||
|
<url>https://github.com/spring-projects/spring-framework</url>
|
||||||
|
</scm>
|
||||||
|
<issueManagement>
|
||||||
|
<system>GitHub</system>
|
||||||
|
<url>https://github.com/spring-projects/spring-framework/issues</url>
|
||||||
|
</issueManagement>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-aop</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-aspects</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-beans</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-context</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-context-indexer</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-context-support</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-core</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-expression</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-instrument</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-jcl</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-jdbc</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-jms</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-messaging</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-orm</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-oxm</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-r2dbc</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-test</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-tx</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-web</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-webflux</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-webmvc</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework</groupId>
|
||||||
|
<artifactId>spring-websocket</artifactId>
|
||||||
|
<version>5.3.30</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,246 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-bom</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>Spring Integration (Bill of Materials)</name>
|
||||||
|
<description>Spring Integration (Bill of Materials)</description>
|
||||||
|
<url>https://github.com/spring-projects/spring-integration</url>
|
||||||
|
<organization>
|
||||||
|
<name>Spring IO</name>
|
||||||
|
<url>https://spring.io/projects/spring-integration</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License, Version 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||||||
|
<distribution>repo</distribution>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<id>artembilan</id>
|
||||||
|
<name>Artem Bilan</name>
|
||||||
|
<email>abilan@vmware.com</email>
|
||||||
|
<roles>
|
||||||
|
<role>project lead</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>garyrussell</id>
|
||||||
|
<name>Gary Russell</name>
|
||||||
|
<email>grussell@vmware.com</email>
|
||||||
|
<roles>
|
||||||
|
<role>project lead emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<id>markfisher</id>
|
||||||
|
<name>Mark Fisher</name>
|
||||||
|
<email>markfisher@vmware.com</email>
|
||||||
|
<roles>
|
||||||
|
<role>project founder and lead emeritus</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/spring-projects/spring-integration.git</connection>
|
||||||
|
<developerConnection>scm:git:ssh://git@github.com:spring-projects/spring-integration.git</developerConnection>
|
||||||
|
<url>https://github.com/spring-projects/spring-integration</url>
|
||||||
|
</scm>
|
||||||
|
<issueManagement>
|
||||||
|
<system>GitHub</system>
|
||||||
|
<url>https://github.com/spring-projects/spring-integration/issues</url>
|
||||||
|
</issueManagement>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-amqp</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-core</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-event</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-feed</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-file</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-ftp</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-gemfire</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-groovy</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-http</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-ip</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-jdbc</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-jms</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-jmx</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-jpa</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-kafka</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-mail</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-mongodb</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-mqtt</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-r2dbc</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-redis</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-rmi</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-rsocket</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-scripting</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-security</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-sftp</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-stomp</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-stream</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-syslog</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-test</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-test-support</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-webflux</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-websocket</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-ws</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-xml</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-xmpp</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-zeromq</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.integration</groupId>
|
||||||
|
<artifactId>spring-integration-zookeeper</artifactId>
|
||||||
|
<version>5.5.19</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,148 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<!-- This module was also published with a richer model, Gradle metadata, -->
|
||||||
|
<!-- which should be used instead. Do not delete the following line which -->
|
||||||
|
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
||||||
|
<!-- that they should prefer consuming it instead. -->
|
||||||
|
<!-- do_not_remove: published-with-gradle-metadata -->
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-bom</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>spring-security-bom</name>
|
||||||
|
<description>Spring Security</description>
|
||||||
|
<url>https://spring.io/projects/spring-security</url>
|
||||||
|
<organization>
|
||||||
|
<name>Pivotal Software, Inc.</name>
|
||||||
|
<url>https://spring.io</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License, Version 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<name>Pivotal</name>
|
||||||
|
<email>info@pivotal.io</email>
|
||||||
|
<organization>Pivotal Software, Inc.</organization>
|
||||||
|
<organizationUrl>https://www.spring.io</organizationUrl>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/spring-projects/spring-security.git</connection>
|
||||||
|
<developerConnection>scm:git:ssh://git@github.com/spring-projects/spring-security.git</developerConnection>
|
||||||
|
<url>https://github.com/spring-projects/spring-security</url>
|
||||||
|
</scm>
|
||||||
|
<issueManagement>
|
||||||
|
<system>GitHub</system>
|
||||||
|
<url>https://github.com/spring-projects/spring-security/issues</url>
|
||||||
|
</issueManagement>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-acl</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-aspects</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-cas</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-config</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-core</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-crypto</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-data</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-ldap</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-messaging</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-oauth2-client</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-oauth2-core</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-oauth2-jose</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-oauth2-resource-server</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-openid</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-remoting</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-rsocket</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-saml2-service-provider</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-taglibs</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-test</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.security</groupId>
|
||||||
|
<artifactId>spring-security-web</artifactId>
|
||||||
|
<version>5.7.11</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||||
|
<!-- This module was also published with a richer model, Gradle metadata, -->
|
||||||
|
<!-- which should be used instead. Do not delete the following line which -->
|
||||||
|
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
||||||
|
<!-- that they should prefer consuming it instead. -->
|
||||||
|
<!-- do_not_remove: published-with-gradle-metadata -->
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>org.springframework.session</groupId>
|
||||||
|
<artifactId>spring-session-bom</artifactId>
|
||||||
|
<version>2021.2.3</version>
|
||||||
|
<packaging>pom</packaging>
|
||||||
|
<name>spring-session-bom</name>
|
||||||
|
<description>Spring Session BOM</description>
|
||||||
|
<url>https://spring.io/projects/spring-security</url>
|
||||||
|
<organization>
|
||||||
|
<name>Pivotal Software, Inc.</name>
|
||||||
|
<url>https://spring.io</url>
|
||||||
|
</organization>
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache License, Version 2.0</name>
|
||||||
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
||||||
|
</license>
|
||||||
|
</licenses>
|
||||||
|
<developers>
|
||||||
|
<developer>
|
||||||
|
<name>Pivotal</name>
|
||||||
|
<email>info@pivotal.io</email>
|
||||||
|
<organization>Pivotal Software, Inc.</organization>
|
||||||
|
<organizationUrl>https://www.spring.io</organizationUrl>
|
||||||
|
</developer>
|
||||||
|
</developers>
|
||||||
|
<scm>
|
||||||
|
<connection>scm:git:git://github.com/spring-projects/spring-security.git</connection>
|
||||||
|
<developerConnection>scm:git:ssh://git@github.com/spring-projects/spring-security.git</developerConnection>
|
||||||
|
<url>https://github.com/spring-projects/spring-security</url>
|
||||||
|
</scm>
|
||||||
|
<issueManagement>
|
||||||
|
<system>GitHub</system>
|
||||||
|
<url>https://github.com/spring-projects/spring-security/issues</url>
|
||||||
|
</issueManagement>
|
||||||
|
<dependencyManagement>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.session</groupId>
|
||||||
|
<artifactId>spring-session-core</artifactId>
|
||||||
|
<version>2.7.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.session</groupId>
|
||||||
|
<artifactId>spring-session-data-geode</artifactId>
|
||||||
|
<version>2.7.1</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.session</groupId>
|
||||||
|
<artifactId>spring-session-data-mongodb</artifactId>
|
||||||
|
<version>2.7.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.session</groupId>
|
||||||
|
<artifactId>spring-session-data-redis</artifactId>
|
||||||
|
<version>2.7.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.session</groupId>
|
||||||
|
<artifactId>spring-session-hazelcast</artifactId>
|
||||||
|
<version>2.7.4</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.session</groupId>
|
||||||
|
<artifactId>spring-session-jdbc</artifactId>
|
||||||
|
<version>2.7.4</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
</dependencyManagement>
|
||||||
|
</project>
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user