2011-09-19 05:49:16 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2011-09-19 07:02:17 +00:00
|
|
|
<!--
|
|
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
-->
|
2011-12-08 21:05:31 +00:00
|
|
|
<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">
|
2011-09-19 05:49:16 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.apache.struts</groupId>
|
|
|
|
|
<artifactId>struts2-plugins</artifactId>
|
2026-06-26 07:18:26 +02:00
|
|
|
<version>7.2.2-SNAPSHOT</version>
|
2011-09-19 05:49:16 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>struts2-cdi-plugin</artifactId>
|
2011-09-19 07:02:17 +00:00
|
|
|
<name>Struts 2 CDI Plugin</name>
|
|
|
|
|
<packaging>jar</packaging>
|
2011-09-19 05:49:16 +00:00
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2023-10-18 13:06:44 -05:00
|
|
|
<groupId>jakarta.enterprise</groupId>
|
|
|
|
|
<artifactId>jakarta.enterprise.cdi-api</artifactId>
|
2011-09-19 05:49:16 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2026-07-21 10:58:28 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jboss.weld</groupId>
|
|
|
|
|
<artifactId>weld-api</artifactId>
|
|
|
|
|
<version>${weld-api.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2011-09-19 05:49:16 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jboss.weld</groupId>
|
2023-11-06 15:57:43 -06:00
|
|
|
<artifactId>weld-core-impl</artifactId>
|
2025-02-24 20:38:21 +11:00
|
|
|
<version>${weld.version}</version>
|
|
|
|
|
<scope>test</scope>
|
2011-09-19 05:49:16 +00:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2020-04-18 18:40:21 -04:00
|
|
|
<groupId>org.jboss.weld.se</groupId>
|
2023-11-06 15:57:43 -06:00
|
|
|
<artifactId>weld-se-core</artifactId>
|
2025-02-24 20:38:21 +11:00
|
|
|
<version>${weld.version}</version>
|
2024-07-09 08:05:25 +02:00
|
|
|
<scope>test</scope>
|
2011-09-19 05:49:16 +00:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2025-02-24 20:38:21 +11:00
|
|
|
<groupId>com.github.h-thurow</groupId>
|
|
|
|
|
<artifactId>simple-jndi</artifactId>
|
|
|
|
|
<version>0.25.0</version>
|
2011-09-19 05:49:16 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2011-09-19 09:15:15 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2025-02-24 20:38:21 +11:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.inject</groupId>
|
|
|
|
|
<artifactId>jakarta.inject-api</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2011-09-19 05:49:16 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
2013-10-23 10:56:53 +00:00
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2026-07-21 10:58:28 +02:00
|
|
|
<!-- weld-api has its own version line, distinct from ${weld.version} (weld-core/weld-se) -->
|
|
|
|
|
<weld-api.version>6.0.Final</weld-api.version>
|
2013-10-23 10:56:53 +00:00
|
|
|
</properties>
|
|
|
|
|
</project>
|