eximeebpms-juel
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.eximeebpms.bpm.juel</groupId>
<artifactId>eximeebpms-juel</artifactId>
<version>1.3.0</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">
<parent>
<artifactId>eximeebpms-database-settings</artifactId>
<groupId>org.eximeebpms.bpm</groupId>
<version>1.3.0</version>
<relativePath>../database/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.eximeebpms.bpm.juel</groupId>
<artifactId>eximeebpms-juel</artifactId>
<name>EximeeBPMS - JUEL</name>
<build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
<shadeSourcesContent>true</shadeSourcesContent>
<artifactSet>
<includes>
<include>jakarta.el:jakarta.el-api</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>jakarta.el</pattern>
<shadedPattern>org.eximeebpms.bpm.impl.juel.jakarta.el</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<license.skip>true</license.skip>
<skip-third-party-bom>false</skip-third-party-bom>
<version.jakarta.el>4.0.0</version.jakarta.el>
</properties>
</project>