mvel2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.mvel</groupId>
<artifactId>mvel2</artifactId>
<version>2.5.2.Final</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>mvel2</artifactId>
<name>mvel</name>
<version>2.5.2.Final</version>
<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>
<url>http://mvel.codehaus.org/</url>
<issueManagement>
<system>jira</system>
<url>http://jira.codehaus.org/browse/MVEL</url>
</issueManagement>
<inceptionYear>2001</inceptionYear>
<mailingLists>
<mailingList>
<name>user</name>
<subscribe>https://lists.jboss.org/mailman/listinfo/rules-users</subscribe>
<unsubscribe>https://lists.jboss.org/mailman/listinfo/rules-users</unsubscribe>
<archive>http://dir.gmane.org/gmane.comp.java.drools.user</archive>
<otherArchives>
<otherArchive>http://drools.46999.n3.nabble.com/Drools-User-forum-f47000.html</otherArchive>
</otherArchives>
</mailingList>
<mailingList>
<name>dev</name>
<subscribe>https://lists.jboss.org/mailman/listinfo/rules-dev</subscribe>
<unsubscribe>https://lists.jboss.org/mailman/listinfo/rules-dev</unsubscribe>
<archive>http://dir.gmane.org/gmane.comp.java.drools.devel</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<name>All developers are listed on the team website</name>
<url>http://www.jboss.org/drools/team</url>
</developer>
</developers>
<contributors>
<contributor>
<name>All contributors are listed on the team website</name>
<url>http://www.jboss.org/drools/team</url>
</contributor>
</contributors>
<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>
<scm>
<connection>scm:git:git@github.com:mvel/mvel.git</connection>
<developerConnection>scm:git:git@github.com:mvel/mvel.git</developerConnection>
<tag>mvel2-2.5.2.Final</tag>
<url>scm:git:git@github.com:mvel/mvel.git</url>
</scm>
<organization>
<name>JBoss by Red Hat</name>
<url>http://www.jboss.org/</url>
</organization>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav</artifactId>
<version>1.0-beta-2</version>
</extension>
</extensions>
<resources>
<resource>
<directory>.</directory>
<includes>
<include>build.properties</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<goals>
<goal>enforce</goal>
</goals>
<inherited>true</inherited>
<configuration>
<rules>
<requireJavaVersion>
<version>[1.8.0,)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.1</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifestFile>META-INF/MANIFEST.MF</manifestFile>
<manifest>
<mainClass>org.mvel2.sh.Main</mainClass>
<packageName>org.mvel2</packageName>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createSourcesJar>true</createSourcesJar>
<artifactSet>
<includes>
<include>org.ow2.asm:asm</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.objectweb.asm</pattern>
<shadedPattern>org.mvel2.asm</shadedPattern>
</relocation>
</relocations>
<transformers>
<transformer />
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<runOrder>random</runOrder>
<childDelegation>true</childDelegation>
<systemProperties>
<property>
<name>mvel.disable.jit</name>
<value>true</value>
</property>
<property>
<name>file.encoding</name>
<value>UTF-8</value>
</property>
<property>
<name>mvel.tests.quick</name>
<value>true</value>
</property>
</systemProperties>
<includes>
<include>**/*Test.java</include>
<include>**/*Tests.java</include>
<include>**/UsageDemos.java</include>
</includes>
<excludes>
<exclude>**/CompiledUnitTestEx.java</exclude>
<exclude>**/PerfTest.java</exclude>
<exclude>**/DroolsTest.java</exclude>
<exclude>**/FailureTests.java</exclude>
<exclude>**/PerformanceTest.java</exclude>
<exclude>**/CompiledPerformanceTests.java</exclude>
<exclude>**/MVELThreadTest.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<extensions>true</extensions>
<executions>
<execution>
<id>manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
<configuration>
<manifestLocation>META-INF</manifestLocation>
<instructions>
<Bundle-SymbolicName>org.mvel2</Bundle-SymbolicName>
<Bundle-Name>mvel2</Bundle-Name>
<Import-Package>sun.*;resolution:=optional, *</Import-Package>
<Export-Package>org.mvel2.*</Export-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>hamcrest-core</artifactId>
<groupId>org.hamcrest</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.19</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>mxparser</artifactId>
<groupId>io.github.x-stream</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.8.1</version>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<repository>
<id>jboss-releases-repository</id>
<name>JBoss Releases Repository</name>
<url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>jboss-snapshots-repository</id>
<name>JBoss Snapshot Repository</name>
<url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>