mvel3
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.mvel</groupId>
<artifactId>mvel3</artifactId>
<version>3.0.0-alpha1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.mvel</groupId>
<artifactId>mvel3</artifactId>
<packaging>jar</packaging>
<version>3.0.0-alpha1</version>
<name>mvel</name>
<url>https://github.com/mvel/mvel</url>
<description>
MVEL is a powerful expression language for Java-based applications.
It provides a plethora of features and is suited for everything
from the smallest property binding and extraction, to full blown scripts.
</description>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<inceptionYear>2001</inceptionYear>
<scm>
<connection>scm:git:git@github.com:mvel/mvel.git</connection>
<url>scm:git:git@github.com:mvel/mvel.git</url>
<developerConnection>scm:git:git@github.com:mvel/mvel.git</developerConnection>
<tag>3.0.0-alpha1</tag>
</scm>
<developers>
<developer>
<name>Mark Proctor</name>
<email>mdproctor@gmail.com</email>
<url>https://github.com/mdproctor</url>
<id>mdproctor</id>
</developer>
<developer>
<name>Mario Fusco</name>
<email>mario.fusco@gmail.com</email>
<url>https://github.com/mariofusco</url>
<id>mariofusco</id>
</developer>
<developer>
<name>Toshiya Kobayashi</name>
<email>toshiyakobayashi@gmail.com</email>
<url>https://github.com/tkobayas</url>
<id>tkobayas</id>
</developer>
</developers>
<contributors>
<contributor>
<name>MVEL Project Contributors</name>
<url>https://github.com/mvel/mvel/graphs/contributors</url>
</contributor>
</contributors>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Plugin versions -->
<maven-enforcer-plugin.version>3.5.0</maven-enforcer-plugin.version>
<maven-compiler-plugin.version>3.14.1</maven-compiler-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-surefire-plugin.version>3.5.4</maven-surefire-plugin.version>
<maven-release-plugin.version>3.1.1</maven-release-plugin.version>
<ph-javacc-maven-plugin.version>4.1.5</ph-javacc-maven-plugin.version>
<antlr4-maven-plugin.version>4.13.2</antlr4-maven-plugin.version>
<build-helper-maven-plugin.version>3.6.1</build-helper-maven-plugin.version>
<maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version>
<maven-gpg-plugin.version>3.1.0</maven-gpg-plugin.version>
<!-- Dependency versions -->
<asm.version>9.7.1</asm.version>
<antlr4.version>4.13.2</antlr4.version>
<commons-lang3.version>3.20.0</commons-lang3.version>
<javaparser.version>3.25.5-mvel3-1</javaparser.version>
<junit-jupiter.version>5.11.4</junit-jupiter.version>
<assertj-core.version>3.27.3</assertj-core.version>
<drools-compiler.version>10.1.0</drools-compiler.version>
<slf4j.version>2.0.16</slf4j.version>
<logback.version>1.5.23</logback.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven-enforcer-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>enforce</goal>
</goals>
<inherited>true</inherited>
<configuration>
<rules>
<requireJavaVersion>
<version>[1.17.0,)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>17</source>
<target>17</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<configuration>
<runOrder>alphabetical</runOrder>
<childDelegation>true</childDelegation>
<systemProperties>
<property>
<name>file.encoding</name>
<value>UTF-8</value>
</property>
<property>
<name>mvel3.compiler.lambda.resetOnTestStartup</name>
<value>true</value>
</property>
</systemProperties>
<includes>
<include>**/*Test.java</include>
<include>**/*Tests.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<tagNameFormat>@{project.version}</tagNameFormat>
<preparationGoals>clean verify</preparationGoals>
<releaseProfiles>run-release</releaseProfiles>
<pushChanges>false</pushChanges>
</configuration>
</plugin>
<!-- Legacy JavaCC parser - kept for compatibility during alpha. ANTLR4 is the primary parser. -->
<plugin>
<groupId>com.helger.maven</groupId>
<artifactId>ph-javacc-maven-plugin</artifactId>
<version>${ph-javacc-maven-plugin.version}</version>
<executions>
<execution>
<id>javacc</id>
<goals>
<goal>javacc</goal>
</goals>
<configuration>
<grammarEncoding>${project.build.sourceEncoding}</grammarEncoding>
<jdkVersion>${java.version}</jdkVersion>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>${antlr4-maven-plugin.version}</version>
<executions>
<execution>
<id>antlr</id>
<goals>
<goal>antlr4</goal>
</goals>
<configuration>
<sourceDirectory>src/main/antlr4</sourceDirectory>
<outputDirectory>target/generated-sources/antlr4</outputDirectory>
<libDirectory>src/main/antlr4/org/mvel3/parser/antlr4</libDirectory>
<visitor>true</visitor>
<listener>true</listener>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${build-helper-maven-plugin.version}</version>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>src/main/javacc-support</source>
<source>target/generated-sources/antlr4</source>
<source>target/generated-sources/javacc</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>${asm.version}</version>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>${antlr4.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
<scope>test</scope>
</dependency>
<!-- javaparser needs to be a fork which contains mvel3 AST nodes -->
<dependency>
<groupId>org.mvel.javaparser</groupId>
<artifactId>javaparser-core</artifactId>
<version>${javaparser.version}</version>
</dependency>
<dependency>
<groupId>org.mvel.javaparser</groupId>
<artifactId>javaparser-symbol-solver-core</artifactId>
<version>${javaparser.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj-core.version}</version>
<scope>test</scope>
</dependency>
<!-- Drools dependency - required for DrlToJavaRewriter, which is likely out of this project scope. Consider removing in a future release. -->
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-compiler</artifactId>
<version>${drools-compiler.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>jboss-releases-repository</id>
<name>JBoss Releases Repository</name>
<url>https://repository.jboss.org/nexus/repository/testing/</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>run-release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<additionalOptions>
<additionalOption>-Xdoclint:none</additionalOption>
</additionalOptions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>B22A5F7F5A6C0EC375BB9964BC36F72DEA2E4C81</keyname>
<passphraseServerId>gpg.passphrase</passphraseServerId>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>