Skip to content

Commit

Permalink
[TOMEE-4128] Jakarta MVC API and Krazo (Impl.)
Browse files Browse the repository at this point in the history
  • Loading branch information
sultan committed Dec 18, 2022
1 parent 48e5dd7 commit 7fcb7b8
Show file tree
Hide file tree
Showing 5 changed files with 122 additions and 0 deletions.
1 change: 1 addition & 0 deletions pom.xml
Expand Up @@ -226,6 +226,7 @@
<!-- Other API and Impl. not in Jakarta EE -->
<version.ehcache>2.10.6</version.ehcache>
<version.geronimo-jcache_1.0_spec>1.0-alpha-1</version.geronimo-jcache_1.0_spec>
<version.mvc>1.1.0</version.mvc>
<version.krazo>1.1.1</version.krazo>
<version.deltaspike>1.9.6</version.deltaspike>

Expand Down
98 changes: 98 additions & 0 deletions tck/mvc-tck/pom.xml
@@ -0,0 +1,98 @@
<?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/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.apache.tomee</groupId>
<artifactId>tck</artifactId>
<version>8.0.14-SNAPSHOT</version>
</parent>

<artifactId>mvc-tck</artifactId>
<name>TomEE :: TCK :: Jakarta MVC TCK</name>

<profiles>
<profile>
<id>mvc-tck</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>tomee-plus</id>
<goals>
<goal>test</goal>
</goals>
<configuration>
<systemPropertyVariables combine.children="append">
<arquillian.launch>tomee-plus</arquillian.launch>
</systemPropertyVariables>
</configuration>
</execution>
<execution>
<id>tomee-plume</id>
<goals>
<goal>test</goal>
</goals>
<configuration>
<systemPropertyVariables combine.children="append">
<arquillian.launch>tomee-plume</arquillian.launch>
</systemPropertyVariables>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<dependencies>

<dependency>
<groupId>jakarta.mvc.tck</groupId>
<artifactId>mvc-tck-api</artifactId>
<version>${version.mvc}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jakarta.mvc.tck</groupId>
<artifactId>mvc-tck-tests</artifactId>
<version>${version.mvc}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jakarta.mvc.tck</groupId>
<artifactId>mvc-tck-docs</artifactId>
<version>${version.mvc}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jakarta.mvc.tck</groupId>
<artifactId>mvc-tck-sigtest</artifactId>
<version>${version.mvc}</version>
<scope>test</scope>
</dependency>

</dependencies>

</project>
1 change: 1 addition & 0 deletions tck/pom.xml
Expand Up @@ -43,6 +43,7 @@
<module>bval-tomee</module>
<module>bval-signature-test</module>
<module>microprofile-tck</module>
<module>mvc-tck</module>
</modules>

<repositories>
Expand Down
11 changes: 11 additions & 0 deletions tomee/tomee-plume-webapp/pom.xml
Expand Up @@ -447,6 +447,17 @@
<artifactId>jakarta.faces</artifactId>
<scope>runtime</scope>
</dependency>
<!-- Jakarta MVC -->
<dependency>
<groupId>jakarta.mvc</groupId>
<artifactId>jakarta.mvc-api</artifactId>
<version>${version.mvc}</version>
</dependency>
<dependency>
<groupId>org.eclipse.krazo</groupId>
<artifactId>krazo-cxf</artifactId>
<version>${version.krazo}</version>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
11 changes: 11 additions & 0 deletions tomee/tomee-plus-webapp/pom.xml
Expand Up @@ -485,6 +485,17 @@
<version>3.2</version>
<scope>test</scope>
</dependency>
<!-- Jakarta MVC -->
<dependency>
<groupId>jakarta.mvc</groupId>
<artifactId>jakarta.mvc-api</artifactId>
<version>${version.mvc}</version>
</dependency>
<dependency>
<groupId>org.eclipse.krazo</groupId>
<artifactId>krazo-cxf</artifactId>
<version>${version.krazo}</version>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down

0 comments on commit 7fcb7b8

Please sign in to comment.