This is an automated email from the ASF dual-hosted git repository. radcortez pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomee.git
commit 6e37459b59c5e78d3cb838448e26f4b99ee60e57 Author: Roberto Cortez <[email protected]> AuthorDate: Thu Dec 13 22:51:06 2018 +0000 TOMEE-2365 - Added project for EE Security JSR-375 implementation. --- tomee/pom.xml | 1 + tomee/tomee-security/pom.xml | 44 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) diff --git a/tomee/pom.xml b/tomee/pom.xml index fc51282..af3c28f 100644 --- a/tomee/pom.xml +++ b/tomee/pom.xml @@ -54,6 +54,7 @@ <module>tomee-juli</module> <module>tomee-overlay-runner</module> <!--<module>tomee-deb</module>--> + <module>tomee-security</module> </modules> diff --git a/tomee/tomee-security/pom.xml b/tomee/tomee-security/pom.xml new file mode 100644 index 0000000..064e5bb --- /dev/null +++ b/tomee/tomee-security/pom.xml @@ -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. +--> + +<!-- $Rev: 600338 $ $Date: 2007-12-02 09:08:04 -0800 (Sun, 02 Dec 2007) $ --> + +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <parent> + <artifactId>tomee</artifactId> + <groupId>org.apache.tomee</groupId> + <version>8.0.0-SNAPSHOT</version> + </parent> + + <modelVersion>4.0.0</modelVersion> + <artifactId>tomee-security</artifactId> + <packaging>jar</packaging> + <name>OpenEJB :: TomEE :: Security</name> + <description>Implementation of Java EE Security JSR-375</description> + + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>javaee-api</artifactId> + <classifier>tomcat</classifier> + </dependency> + </dependencies> +</project> +
