init
This commit is contained in:
37
res/maven/README.txt
Normal file
37
res/maven/README.txt
Normal file
@@ -0,0 +1,37 @@
|
||||
================================================================================
|
||||
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.
|
||||
================================================================================
|
||||
|
||||
General preparations before any publishing:
|
||||
1 - Generate a standard Tomcat release (ant release)
|
||||
2 - Copy mvn.properties.default to mvn.properties and adjust it as necessary.
|
||||
You will need to set asf.ldap.username and you'll probably need to set
|
||||
gpg.exec
|
||||
The other properties should be OK. Note: you will be prompted for your
|
||||
GPG pass-phrase and LDAP password when the script runs.
|
||||
|
||||
To publish a snapshot do the following:
|
||||
1 - ant -f mvn-pub.xml deploy-snapshot
|
||||
This populates
|
||||
https://repository.apache.org/content/repositories/snapshots/org/apache/tomcat/
|
||||
|
||||
To release do the following:
|
||||
1 - ant -f mvn-pub.xml deploy-release
|
||||
that step creates a staging area in
|
||||
https://repository.apache.org/index.html#stagingRepositories
|
||||
2 - check the upload and then close the repository
|
||||
3 - include the repository in the VOTE thread
|
||||
4 - in https://repository.apache.org/index.html#stagingRepositories release it
|
||||
426
res/maven/mvn-pub.xml
Normal file
426
res/maven/mvn-pub.xml
Normal file
@@ -0,0 +1,426 @@
|
||||
<?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 name="Tomcat 8.5 Maven Deployment" default="" basedir="."
|
||||
xmlns:artifact="urn:maven-artifact-ant"
|
||||
xmlns:if="ant:if"
|
||||
xmlns:unless="ant:unless">
|
||||
<!--
|
||||
Built for using Maven Ant Tasks (version 2.1.0 is known to work)
|
||||
-->
|
||||
|
||||
<property file="${basedir}/mvn.properties"/>
|
||||
<property file="${basedir}/mvn.properties.default"/>
|
||||
<property name="local.repo" value="${user.home}/.m2/repository"/>
|
||||
|
||||
<target name="init-maven">
|
||||
<antcall target="downloadfile">
|
||||
<param name="sourcefile" value="${maven-ant-tasks.loc}"/>
|
||||
<param name="destfile" value="${maven-ant-tasks.jar}"/>
|
||||
<param name="destdir" value="${maven-ant-tasks.home}"/>
|
||||
</antcall>
|
||||
|
||||
<typedef resource="org/apache/maven/artifact/ant/antlib.xml"
|
||||
uri="urn:maven-artifact-ant">
|
||||
<classpath>
|
||||
<pathelement location="${maven-ant-tasks.jar}" />
|
||||
</classpath>
|
||||
</typedef>
|
||||
</target>
|
||||
|
||||
<target name="maven-deploy" depends="init-maven">
|
||||
<!--cleanup-->
|
||||
<delete file="${pom}.tmp"/>
|
||||
<delete file="${pom}.asc"/>
|
||||
<delete file="${file}.asc"/>
|
||||
<delete file="${src}.asc"/>
|
||||
|
||||
<!--replace the version in the pom-->
|
||||
<copy file="${pom}" tofile="${pom}.tmp">
|
||||
<filterset>
|
||||
<filter token="MAVEN.DEPLOY.VERSION" value="${maven.deploy.version}"/>
|
||||
</filterset>
|
||||
</copy>
|
||||
|
||||
<!--sign the jar, the source and the pom -->
|
||||
<antcall target="-sign" >
|
||||
<param name="file.in" value="${file}" />
|
||||
<param name="file.out" value="${file}.asc" />
|
||||
</antcall>
|
||||
<antcall target="-sign" >
|
||||
<param name="file.in" value="${src}" />
|
||||
<param name="file.out" value="${src}.asc" />
|
||||
</antcall>
|
||||
<antcall target="-sign" >
|
||||
<param name="file.in" value="${pom}.tmp" />
|
||||
<param name="file.out" value="${pom}.asc" />
|
||||
</antcall>
|
||||
|
||||
<artifact:deploy file="${file}">
|
||||
<pom file="${pom}.tmp"/>
|
||||
<remoteRepository id="${maven.repo.repositoryId}" url="${maven.repo.url}">
|
||||
<authentication username="${asf.ldap.username}"
|
||||
password="${asf.ldap.password}"
|
||||
unless:set="maven.auth.useSettings" />
|
||||
</remoteRepository>
|
||||
<attach file="${file}.asc" type="jar.asc" if:set="gpg.passphrase"/>
|
||||
<attach file="${src}" classifier="sources" type="jar"/>
|
||||
<attach file="${src}.asc" classifier="sources" type="jar.asc" if:set="gpg.passphrase"/>
|
||||
<attach file="${pom}.asc" type="pom.asc" if:set="gpg.passphrase"/>
|
||||
</artifact:deploy>
|
||||
|
||||
<delete file="${pom}.tmp"/>
|
||||
<delete file="${pom}.asc"/>
|
||||
<delete file="${file}.asc"/>
|
||||
<delete file="${src}.asc"/>
|
||||
</target>
|
||||
|
||||
<macrodef name="doMavenDeploy">
|
||||
<attribute name="artifactId"/>
|
||||
<attribute name="jarFileName" default="@{artifactId}.jar" />
|
||||
<attribute name="groupId" default="org.apache.tomcat" />
|
||||
<attribute name="file" default="${tomcat.lib.path}/@{jarFileName}" />
|
||||
<attribute name="pom" default="@{artifactId}.pom" />
|
||||
<attribute name="srcJarFileName" default="@{artifactId}-src.jar" />
|
||||
<attribute name="src" default="${tomcat.src.path}/@{srcJarFileName}" />
|
||||
<sequential>
|
||||
<antcall target="maven-deploy">
|
||||
<param name="file" value="@{file}"/>
|
||||
<param name="groupId" value="@{groupId}"/>
|
||||
<param name="artifactId" value="@{artifactId}"/>
|
||||
<param name="pom" value="${tomcat.pom.path}/@{pom}"/>
|
||||
<param name="src" value="@{src}"/>
|
||||
<param name="src.skip" value="@{src.skip}"/>
|
||||
</antcall>
|
||||
</sequential>
|
||||
</macrodef>
|
||||
|
||||
<target name="maven-deploy-nosrc" depends="init-maven">
|
||||
<!--cleanup-->
|
||||
<delete file="${pom}.tmp"/>
|
||||
<delete file="${pom}.asc"/>
|
||||
<delete file="${file}.asc"/>
|
||||
|
||||
<!--replace the version in the pom-->
|
||||
<copy file="${pom}" tofile="${pom}.tmp">
|
||||
<filterset>
|
||||
<filter token="MAVEN.DEPLOY.VERSION" value="${maven.deploy.version}"/>
|
||||
</filterset>
|
||||
</copy>
|
||||
|
||||
<!--sign the file and pom -->
|
||||
<antcall target="-sign" >
|
||||
<param name="file.in" value="${file}" />
|
||||
<param name="file.out" value="${file}.asc" />
|
||||
</antcall>
|
||||
<antcall target="-sign" >
|
||||
<param name="file.in" value="${pom}.tmp" />
|
||||
<param name="file.out" value="${pom}.asc" />
|
||||
</antcall>
|
||||
|
||||
<artifact:deploy file="${file}">
|
||||
<pom file="${pom}.tmp"/>
|
||||
<remoteRepository id="${maven.repo.repositoryId}" url="${maven.repo.url}">
|
||||
<authentication username="${asf.ldap.username}"
|
||||
password="${asf.ldap.password}"
|
||||
unless:set="maven.auth.useSettings"/>
|
||||
</remoteRepository>
|
||||
<attach file="${file}.asc" type="jar.asc" if:set="gpg.passphrase"/>
|
||||
<attach file="${pom}.asc" type="pom.asc" if:set="gpg.passphrase"/>
|
||||
</artifact:deploy>
|
||||
|
||||
<delete file="${pom}.tmp"/>
|
||||
<delete file="${pom}.asc"/>
|
||||
<delete file="${file}.asc"/>
|
||||
</target>
|
||||
|
||||
<macrodef name="doMavenDeployNoSrc">
|
||||
<attribute name="artifactId"/>
|
||||
<attribute name="jarFileName" default="@{artifactId}.jar" />
|
||||
<attribute name="groupId" default="org.apache.tomcat" />
|
||||
<attribute name="file" default="${tomcat.lib.path}/@{jarFileName}" />
|
||||
<attribute name="pom" default="@{artifactId}.pom" />
|
||||
<sequential>
|
||||
<antcall target="maven-deploy-nosrc">
|
||||
<param name="file" value="@{file}"/>
|
||||
<param name="groupId" value="@{groupId}"/>
|
||||
<param name="artifactId" value="@{artifactId}"/>
|
||||
<param name="pom" value="${tomcat.pom.path}/@{pom}"/>
|
||||
</antcall>
|
||||
</sequential>
|
||||
</macrodef>
|
||||
|
||||
<target name="maven-deploy-binaries" depends="init-maven">
|
||||
<!--cleanup-->
|
||||
<delete file="${pom}.tmp"/>
|
||||
<delete file="${pom}.asc"/>
|
||||
<delete file="${file}.zip.asc"/>
|
||||
<delete file="${file}.tar.gz.asc"/>
|
||||
|
||||
<!--replace the version in the pom-->
|
||||
<copy file="${pom}" tofile="${pom}.tmp">
|
||||
<filterset>
|
||||
<filter token="MAVEN.DEPLOY.VERSION" value="${maven.deploy.version}"/>
|
||||
</filterset>
|
||||
</copy>
|
||||
|
||||
<!--sign the zip, the tar.gz and the pom -->
|
||||
<antcall target="-sign" >
|
||||
<param name="file.in" value="${file}.zip" />
|
||||
<param name="file.out" value="${file}.zip.asc" />
|
||||
</antcall>
|
||||
<antcall target="-sign" >
|
||||
<param name="file.in" value="${file}.tar.gz" />
|
||||
<param name="file.out" value="${file}.tar.gz.asc" />
|
||||
</antcall>
|
||||
<antcall target="-sign" >
|
||||
<param name="file.in" value="${pom}.tmp" />
|
||||
<param name="file.out" value="${pom}.asc" />
|
||||
</antcall>
|
||||
|
||||
<artifact:deploy file="${pom}">
|
||||
<pom file="${pom}.tmp"/>
|
||||
<remoteRepository id="${maven.repo.repositoryId}" url="${maven.repo.url}">
|
||||
<authentication username="${asf.ldap.username}"
|
||||
password="${asf.ldap.password}"
|
||||
unless:set="maven.auth.useSettings"/>
|
||||
</remoteRepository>
|
||||
<attach file="${file}.zip" type="zip"/>
|
||||
<attach file="${file}.zip.asc" type="zip.asc" if:set="gpg.passphrase"/>
|
||||
<attach file="${file}.tar.gz" type="tar.gz"/>
|
||||
<attach file="${file}.tar.gz.asc" type="tar.gz.asc" if:set="gpg.passphrase"/>
|
||||
<attach file="${pom}.asc" type="pom.asc" if:set="gpg.passphrase"/>
|
||||
</artifact:deploy>
|
||||
|
||||
<delete file="${pom}.tmp"/>
|
||||
<delete file="${pom}.asc"/>
|
||||
<delete file="${file}.zip.asc"/>
|
||||
<delete file="${file}.tar.gz.asc"/>
|
||||
</target>
|
||||
|
||||
<macrodef name="doMavenDeployBinaries">
|
||||
<attribute name="artifactId"/>
|
||||
<attribute name="groupId" default="org.apache.tomcat" />
|
||||
<attribute name="file" />
|
||||
<attribute name="pom" default="@{artifactId}.pom" />
|
||||
<sequential>
|
||||
<antcall target="maven-deploy-binaries">
|
||||
<param name="file" value="@{file}"/>
|
||||
<param name="groupId" value="@{groupId}"/>
|
||||
<param name="artifactId" value="@{artifactId}"/>
|
||||
<param name="pom" value="${tomcat.pom.path}/@{pom}"/>
|
||||
</antcall>
|
||||
</sequential>
|
||||
</macrodef>
|
||||
|
||||
<target name="generic-deploy" depends="init-maven,init-gpg-1,init-gpg-2,init-ldap">
|
||||
<!-- Standard jars in bin directory -->
|
||||
<!-- Skip bootstrap.jar - it is just a subset of catalina.jar -->
|
||||
<doMavenDeploy artifactId="tomcat-juli"
|
||||
file="${tomcat.bin.path}/tomcat-juli.jar"/>
|
||||
|
||||
<!-- Standard jars in lib directory -->
|
||||
<doMavenDeploy artifactId="tomcat-annotations-api"
|
||||
jarFileName="annotations-api.jar"
|
||||
srcJarFileName="annotations-api-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-catalina"
|
||||
jarFileName="catalina.jar"
|
||||
srcJarFileName="catalina-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-catalina-ant"
|
||||
jarFileName="catalina-ant.jar"
|
||||
srcJarFileName="catalina-ant-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-catalina-ha"
|
||||
jarFileName="catalina-ha.jar"
|
||||
srcJarFileName="catalina-ha-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-tribes"
|
||||
jarFileName="catalina-tribes.jar"
|
||||
srcJarFileName="catalina-tribes-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-storeconfig"
|
||||
jarFileName="catalina-storeconfig.jar"
|
||||
srcJarFileName="catalina-storeconfig-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-jdbc"
|
||||
jarFileName="tomcat-jdbc.jar"
|
||||
srcJarFileName="tomcat-jdbc-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-el-api"
|
||||
jarFileName="el-api.jar"
|
||||
srcJarFileName="el-api-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-jasper"
|
||||
jarFileName="jasper.jar"
|
||||
srcJarFileName="jasper-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-jasper-el"
|
||||
jarFileName="jasper-el.jar"
|
||||
srcJarFileName="jasper-el-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-jsp-api"
|
||||
jarFileName="jsp-api.jar"
|
||||
srcJarFileName="jsp-api-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-servlet-api"
|
||||
jarFileName="servlet-api.jar"
|
||||
srcJarFileName="servlet-api-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-websocket-api"
|
||||
jarFileName="websocket-api.jar"
|
||||
srcJarFileName="websocket-api-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-jaspic-api"
|
||||
jarFileName="jaspic-api.jar"
|
||||
srcJarFileName="jaspic-api-src.jar"/>
|
||||
|
||||
<doMavenDeploy artifactId="tomcat-api"/>
|
||||
<doMavenDeploy artifactId="tomcat-jni"/>
|
||||
<doMavenDeploy artifactId="tomcat-util"/>
|
||||
<doMavenDeploy artifactId="tomcat-util-scan"/>
|
||||
<doMavenDeploy artifactId="tomcat-coyote"/>
|
||||
<doMavenDeploy artifactId="tomcat-dbcp"/>
|
||||
<doMavenDeploy artifactId="tomcat-websocket"/>
|
||||
<doMavenDeployNoSrc artifactId="tomcat-i18n-de"/>
|
||||
<doMavenDeployNoSrc artifactId="tomcat-i18n-es"/>
|
||||
<doMavenDeployNoSrc artifactId="tomcat-i18n-fr"/>
|
||||
<doMavenDeployNoSrc artifactId="tomcat-i18n-ja"/>
|
||||
<doMavenDeployNoSrc artifactId="tomcat-i18n-ko"/>
|
||||
<doMavenDeployNoSrc artifactId="tomcat-i18n-ru"/>
|
||||
<doMavenDeployNoSrc artifactId="tomcat-i18n-zh-CN"/>
|
||||
|
||||
<!-- Extras jars -->
|
||||
<doMavenDeploy artifactId="tomcat-catalina-jmx-remote"
|
||||
groupId="org.apache.tomcat.extras"
|
||||
file="${tomcat.extras.path}/catalina-jmx-remote.jar"
|
||||
src="${tomcat.extras.src.path}/catalina-jmx-remote-src.jar" />
|
||||
<doMavenDeploy artifactId="tomcat-catalina-ws"
|
||||
groupId="org.apache.tomcat.extras"
|
||||
file="${tomcat.extras.path}/catalina-ws.jar"
|
||||
src="${tomcat.extras.src.path}/catalina-ws-src.jar" />
|
||||
|
||||
<!-- Emedded jars -->
|
||||
<!-- Skip DBCP - optional and can use standard ones above -->
|
||||
<doMavenDeploy artifactId="tomcat-embed-core"
|
||||
groupId="org.apache.tomcat.embed"
|
||||
file="${tomcat.embed.path}/tomcat-embed-core.jar"
|
||||
pom="tomcat-embed-core.pom"
|
||||
src="${tomcat.embed.src.path}/tomcat-embed-core-src.jar"/>
|
||||
<doMavenDeploy artifactId="tomcat-embed-jasper"
|
||||
groupId="org.apache.tomcat.embed"
|
||||
file="${tomcat.embed.path}/tomcat-embed-jasper.jar"
|
||||
pom="tomcat-embed-jasper.pom"
|
||||
src="${tomcat.embed.src.path}/tomcat-embed-jasper-src.jar"/>
|
||||
<doMavenDeploy artifactId="tomcat-embed-el"
|
||||
groupId="org.apache.tomcat.embed"
|
||||
file="${tomcat.embed.path}/tomcat-embed-el.jar"
|
||||
pom="tomcat-embed-el.pom"
|
||||
src="${tomcat.embed.src.path}/tomcat-embed-el-src.jar"/>
|
||||
<doMavenDeploy artifactId="tomcat-embed-websocket"
|
||||
groupId="org.apache.tomcat.embed"
|
||||
file="${tomcat.embed.path}/tomcat-embed-websocket.jar"
|
||||
pom="tomcat-embed-websocket.pom"
|
||||
src="${tomcat.embed.src.path}/tomcat-embed-websocket-src.jar"/>
|
||||
|
||||
<!-- Binaries -->
|
||||
<doMavenDeployBinaries
|
||||
artifactId="tomcat"
|
||||
file="${tomcat.release.path}/v${maven.deploy.binary.version}/bin/apache-tomcat-${maven.deploy.binary.version}"/>
|
||||
|
||||
</target>
|
||||
|
||||
<target name="deploy-snapshot">
|
||||
<antcall target="generic-deploy">
|
||||
<param name="maven.repo.repositoryId"
|
||||
value="${maven.snapshot.repo.repositoryId}"/>
|
||||
<param name="maven.repo.url" value="${maven.snapshot.repo.url}"/>
|
||||
<param name="maven.deploy.version" value="8.5-SNAPSHOT"/>
|
||||
<param name="maven.deploy.binary.version"
|
||||
value="${maven.asf.release.deploy.version}-dev"/>
|
||||
</antcall>
|
||||
</target>
|
||||
|
||||
<target name="deploy-release">
|
||||
<antcall target="generic-deploy">
|
||||
<param name="maven.repo.repositoryId"
|
||||
value="${maven.asf.release.repo.repositoryId}"/>
|
||||
<param name="maven.repo.url" value="${maven.asf.release.repo.url}"/>
|
||||
<param name="maven.deploy.version"
|
||||
value="${maven.asf.release.deploy.version}"/>
|
||||
<param name="maven.deploy.binary.version"
|
||||
value="${maven.asf.release.deploy.version}"/>
|
||||
</antcall>
|
||||
</target>
|
||||
|
||||
<target name="init-gpg-1">
|
||||
<available file="${gpg.exec}" property="gpg.exec.available"/>
|
||||
</target>
|
||||
|
||||
<target name="init-gpg-2" if="${gpg.exec.available}">
|
||||
<input message="Enter GPG pass-phrase" addproperty="gpg.passphrase" >
|
||||
<handler type="secure"/>
|
||||
</input>
|
||||
</target>
|
||||
|
||||
<target name="init-ldap" unless="maven.auth.useSettings">
|
||||
<input message="Enter ASF LDAP (same as svn) password"
|
||||
addproperty="asf.ldap.password" >
|
||||
<handler type="secure"/>
|
||||
</input>
|
||||
</target>
|
||||
|
||||
<target name="-sign" if="gpg.passphrase">
|
||||
<fail unless="file" />
|
||||
<exec executable="${gpg.exec}" failonerror="true"
|
||||
inputstring="${gpg.passphrase}">
|
||||
<arg value="--batch"/>
|
||||
<arg value="--passphrase-fd"/>
|
||||
<arg value="0"/>
|
||||
<arg value="-a"/>
|
||||
<arg value="-b"/>
|
||||
<arg value="-o"/>
|
||||
<arg value="${file.out}"/>
|
||||
<arg value="${file.in}"/>
|
||||
</exec>
|
||||
</target>
|
||||
|
||||
<!-- =============== Utility Targets to support downloads ================ -->
|
||||
|
||||
<target name="setproxy" if="${proxy.use}">
|
||||
<setproxy proxyhost="${proxy.host}" proxyport="${proxy.port}"
|
||||
proxyuser="${proxy.user}" proxypassword="${proxy.password}" />
|
||||
<echo message="Using ${proxy.host}:${proxy.port} to download ${sourcefile}"/>
|
||||
</target>
|
||||
|
||||
<target name="testexist">
|
||||
<echo message="Testing for ${destfile}"/>
|
||||
<available file="${destfile}" property="exist"/>
|
||||
</target>
|
||||
|
||||
<target name="downloadfile" unless="exist" depends="testexist,setproxy">
|
||||
<!-- Download the file -->
|
||||
<local name="temp.file"/>
|
||||
<mkdir dir="${base.path}"/>
|
||||
<tempfile property="temp.file" destdir="${base.path}" prefix="download-" suffix=".tmp"/>
|
||||
<get src="${sourcefile}" httpusecaches="${trydownload.httpusecaches}" dest="${temp.file}"/>
|
||||
<mkdir dir="${destdir}"/>
|
||||
<move file="${temp.file}" tofile="${destfile}"/>
|
||||
</target>
|
||||
|
||||
</project>
|
||||
67
res/maven/mvn.properties.default
Normal file
67
res/maven/mvn.properties.default
Normal file
@@ -0,0 +1,67 @@
|
||||
# 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.
|
||||
#
|
||||
# To create custom properties, simply create
|
||||
# the file mvn.properties
|
||||
# in this directory
|
||||
# no need to change this file
|
||||
#
|
||||
|
||||
# Authentication
|
||||
# Note: You will be prompted for your GPG passphrase and LDAP password when
|
||||
# running this script
|
||||
asf.ldap.username=<!-- YOUR APACHE LDAP USERNAME -->
|
||||
gpg.exec=C:/software/GNU/GnuPG/gpg.exe
|
||||
# Set this property to use the user name and password from the Maven
|
||||
# settings.xml file rather than from asf.ldap.username and prompting for the
|
||||
# associated password
|
||||
# maven.auth.useSettings=Anything
|
||||
|
||||
# ASF Snapshot Repository (hosted on Nexus)
|
||||
maven.snapshot.repo.url=https://repository.apache.org/content/repositories/snapshots
|
||||
maven.snapshot.repo.repositoryId=apache.snapshots.https
|
||||
|
||||
# ASF Release Repository (hosted on Nexus)
|
||||
# Note: Also used for staging releases prior to voting
|
||||
maven.asf.release.repo.url=https://repository.apache.org/service/local/staging/deploy/maven2
|
||||
maven.asf.release.repo.repositoryId=apache.releases.https
|
||||
|
||||
# Release version info
|
||||
maven.asf.release.deploy.version=8.5.51
|
||||
|
||||
#Where do we load the libraries from
|
||||
tomcat.lib.path=../../output/build/lib
|
||||
tomcat.bin.path=../../output/build/bin
|
||||
tomcat.release.path=../../output/release
|
||||
tomcat.src.path=../../output/src-jars
|
||||
tomcat.embed.path=../../output/embed
|
||||
tomcat.embed.src.path=../../output/embed-src-jars
|
||||
tomcat.extras.path=../../output/extras
|
||||
tomcat.extras.src.path=../../output/extras-src-jars
|
||||
|
||||
#Where do we find the POM files
|
||||
tomcat.pom.path=../../res/maven
|
||||
|
||||
# ----- Default Base Path for Dependent Packages -----
|
||||
# Please note this path must be absolute, not relative,
|
||||
# as it is referenced with different working directory
|
||||
# contexts by the various build scripts.
|
||||
base.path=${user.home}/tomcat-build-libs
|
||||
|
||||
# ----- Maven Ant Tasks -----
|
||||
maven-ant-tasks.version=2.1.3
|
||||
maven-ant-tasks.home=${base.path}/maven-ant-tasks-${maven-ant-tasks.version}
|
||||
maven-ant-tasks.loc=https://archive.apache.org/dist/maven/ant-tasks/${maven-ant-tasks.version}/binaries/maven-ant-tasks-${maven-ant-tasks.version}.jar
|
||||
maven-ant-tasks.jar=${maven-ant-tasks.home}/maven-ant-tasks-${maven-ant-tasks.version}.jar
|
||||
35
res/maven/tomcat-annotations-api.pom
Normal file
35
res/maven/tomcat-annotations-api.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-annotations-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Annotations Package</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
43
res/maven/tomcat-api.pom
Normal file
43
res/maven/tomcat-api.pom
Normal file
@@ -0,0 +1,43 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Definition of interfaces shared by Catalina and Jasper</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-servlet-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
49
res/maven/tomcat-catalina-ant.pom
Normal file
49
res/maven/tomcat-catalina-ant.pom
Normal file
@@ -0,0 +1,49 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-catalina-ant</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Tomcat Ant tasks for remote management</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util-scan</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
79
res/maven/tomcat-catalina-ha.pom
Normal file
79
res/maven/tomcat-catalina-ha.pom
Normal file
@@ -0,0 +1,79 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-catalina-ha</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Tomcat High Availability Implementation</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-coyote</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-servlet-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-juli</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-tribes</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-catalina</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util-scan</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
54
res/maven/tomcat-catalina-jmx-remote.pom
Normal file
54
res/maven/tomcat-catalina-jmx-remote.pom
Normal file
@@ -0,0 +1,54 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-catalina-jmx-remote</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Tomcat Remote JMX listener</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-catalina</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-juli</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
42
res/maven/tomcat-catalina-ws.pom
Normal file
42
res/maven/tomcat-catalina-ws.pom
Normal file
@@ -0,0 +1,42 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-catalina-ws</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Tomcat JNDI Factory for Web Services</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-catalina</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
97
res/maven/tomcat-catalina.pom
Normal file
97
res/maven/tomcat-catalina.pom
Normal file
@@ -0,0 +1,97 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-catalina</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Tomcat Servlet Engine Core Classes and Standard implementations</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-servlet-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-jsp-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-juli</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-annotations-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-jni</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-coyote</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util-scan</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-jaspic-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
61
res/maven/tomcat-coyote.pom
Normal file
61
res/maven/tomcat-coyote.pom
Normal file
@@ -0,0 +1,61 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-coyote</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Tomcat Connectors and HTTP parser</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-servlet-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-jni</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-juli</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
43
res/maven/tomcat-dbcp.pom
Normal file
43
res/maven/tomcat-dbcp.pom
Normal file
@@ -0,0 +1,43 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-dbcp</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Tomcat Database Connection Pooling package</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-juli</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
35
res/maven/tomcat-el-api.pom
Normal file
35
res/maven/tomcat-el-api.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-el-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Expression language package</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
43
res/maven/tomcat-embed-core.pom
Normal file
43
res/maven/tomcat-embed-core.pom
Normal file
@@ -0,0 +1,43 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-core</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Core Tomcat implementation</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-annotations-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
35
res/maven/tomcat-embed-el.pom
Normal file
35
res/maven/tomcat-embed-el.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-el</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Core Tomcat implementation</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
54
res/maven/tomcat-embed-jasper.pom
Normal file
54
res/maven/tomcat-embed-jasper.pom
Normal file
@@ -0,0 +1,54 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-jasper</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Core Tomcat implementation</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-core</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-el</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jdt</groupId>
|
||||
<artifactId>ecj</artifactId>
|
||||
<version>3.12.3</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
43
res/maven/tomcat-embed-websocket.pom
Normal file
43
res/maven/tomcat-embed-websocket.pom
Normal file
@@ -0,0 +1,43 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-websocket</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Core Tomcat implementation</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat.embed</groupId>
|
||||
<artifactId>tomcat-embed-core</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
35
res/maven/tomcat-i18n-de.pom
Normal file
35
res/maven/tomcat-i18n-de.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-i18n-de</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>German translations</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
35
res/maven/tomcat-i18n-es.pom
Normal file
35
res/maven/tomcat-i18n-es.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-i18n-es</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Spanish translations</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
35
res/maven/tomcat-i18n-fr.pom
Normal file
35
res/maven/tomcat-i18n-fr.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-i18n-fr</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>French translations</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
35
res/maven/tomcat-i18n-ja.pom
Normal file
35
res/maven/tomcat-i18n-ja.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-i18n-ja</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Japanese translations</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
35
res/maven/tomcat-i18n-ko.pom
Normal file
35
res/maven/tomcat-i18n-ko.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-i18n-ko</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Korean translations</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
35
res/maven/tomcat-i18n-ru.pom
Normal file
35
res/maven/tomcat-i18n-ru.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-i18n-ru</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Russian translations</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
35
res/maven/tomcat-i18n-zh-CN.pom
Normal file
35
res/maven/tomcat-i18n-zh-CN.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-i18n-zh-CN</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Simplified Chinese translations</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
44
res/maven/tomcat-jasper-el.pom
Normal file
44
res/maven/tomcat-jasper-el.pom
Normal file
@@ -0,0 +1,44 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-jasper-el</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Jasper Expression Language Impl</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-el-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
||||
84
res/maven/tomcat-jasper.pom
Normal file
84
res/maven/tomcat-jasper.pom
Normal file
@@ -0,0 +1,84 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-jasper</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Tomcats JSP Parser</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-servlet-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-juli</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-jsp-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-el-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.eclipse.jdt</groupId>
|
||||
<artifactId>ecj</artifactId>
|
||||
<version>3.12.3</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-jasper-el</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util-scan</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
35
res/maven/tomcat-jaspic-api.pom
Normal file
35
res/maven/tomcat-jaspic-api.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-jaspic-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>javax.security.auth.message package</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
43
res/maven/tomcat-jdbc.pom
Normal file
43
res/maven/tomcat-jdbc.pom
Normal file
@@ -0,0 +1,43 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-jdbc</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Tomcat JDBC Pool Package</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-juli</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
35
res/maven/tomcat-jni.pom
Normal file
35
res/maven/tomcat-jni.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-jni</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Interface code to the native connector</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
49
res/maven/tomcat-jsp-api.pom
Normal file
49
res/maven/tomcat-jsp-api.pom
Normal file
@@ -0,0 +1,49 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-jsp-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>JSP package</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-el-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-servlet-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
35
res/maven/tomcat-juli.pom
Normal file
35
res/maven/tomcat-juli.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-juli</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Tomcat Core Logging Package</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
62
res/maven/tomcat-servlet-api.pom
Normal file
62
res/maven/tomcat-servlet-api.pom
Normal file
@@ -0,0 +1,62 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-servlet-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>javax.servlet package</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<licenses>
|
||||
<license>
|
||||
<name>
|
||||
Apache License, Version 2.0 and
|
||||
Common Development And Distribution License (CDDL) Version 1.0
|
||||
</name>
|
||||
<url>
|
||||
http://www.apache.org/licenses/LICENSE-2.0.txt and
|
||||
http://www.opensource.org/licenses/cddl1.txt
|
||||
</url>
|
||||
<distribution>repo</distribution>
|
||||
<comments>
|
||||
The Apache License, version 2.0 applies to all files apart from
|
||||
javaee_5.xsd,
|
||||
javaee_6.xsd,
|
||||
javaee_7.xsd,
|
||||
javaee_web_services_1_2.xsd,
|
||||
javaee_web_services_client_1_2.xsd,
|
||||
javaee_web_services_1_3.xsd,
|
||||
javaee_web_services_client_1_3.xsd,
|
||||
javaee_web_services_1_4.xsd,
|
||||
javaee_web_services_client_1_4.xsd,
|
||||
jsp_2_2.xsd,
|
||||
jsp_2_3.xsd,
|
||||
web-app_3_0.xsd,
|
||||
web-common_3_0.xsd,
|
||||
web-fragment_3_0.xsd,
|
||||
web-app_3_1.xsd,
|
||||
web-common_3_1.xsd,
|
||||
web-fragment_3_1.xsd,
|
||||
to which the CDDL version 1.0 applies.
|
||||
</comments>
|
||||
</license>
|
||||
</licenses>
|
||||
</project>
|
||||
73
res/maven/tomcat-storeconfig.pom
Normal file
73
res/maven/tomcat-storeconfig.pom
Normal file
@@ -0,0 +1,73 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-storeconfig</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Tomcat storeconfig component</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-juli</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-coyote</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-tribes</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-catalina</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-catalina-ha</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
43
res/maven/tomcat-tribes.pom
Normal file
43
res/maven/tomcat-tribes.pom
Normal file
@@ -0,0 +1,43 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-tribes</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Tomcat Group Communication Package</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-juli</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
58
res/maven/tomcat-util-scan.pom
Normal file
58
res/maven/tomcat-util-scan.pom
Normal file
@@ -0,0 +1,58 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util-scan</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>
|
||||
Common code shared by Catalina and Jasper for scanning JARS and processing
|
||||
XML descriptors
|
||||
</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-juli</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
43
res/maven/tomcat-util.pom
Normal file
43
res/maven/tomcat-util.pom
Normal file
@@ -0,0 +1,43 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Common code shared by multiple Tomcat components</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-juli</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
35
res/maven/tomcat-websocket-api.pom
Normal file
35
res/maven/tomcat-websocket-api.pom
Normal file
@@ -0,0 +1,35 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-websocket-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>WebSocket (JSR356) API</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
</project>
|
||||
61
res/maven/tomcat-websocket.pom
Normal file
61
res/maven/tomcat-websocket.pom
Normal file
@@ -0,0 +1,61 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-websocket</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Tomcat WebSocket (JSR356) implementation</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<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>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-servlet-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-websocket-api</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-juli</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat-util</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
36
res/maven/tomcat.pom
Normal file
36
res/maven/tomcat.pom
Normal file
@@ -0,0 +1,36 @@
|
||||
<?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>
|
||||
<groupId>org.apache.tomcat</groupId>
|
||||
<artifactId>tomcat</artifactId>
|
||||
<version>@MAVEN.DEPLOY.VERSION@</version>
|
||||
<description>Binary distribution of Apache Tomcat</description>
|
||||
<url>https://tomcat.apache.org/</url>
|
||||
<packaging>pom</packaging>
|
||||
<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>
|
||||
</project>
|
||||
Reference in New Issue
Block a user