tbel
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.thingsboard</groupId> <artifactId>tbel</artifactId> <version>1.2.6</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.thingsboard</groupId> <artifactId>tbel</artifactId> <packaging>jar</packaging> <version>1.2.6</version> <name>tbel</name> <url>https://thingsboard.io/</url> <description> TBEL is a powerful expression language for ThingsBoard platform user-defined functions. Original implementation is based on MVEL. </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>2022</inceptionYear> <organization> <name>ThingsBoard</name> <url>https://thingsboard.io/</url> </organization> <scm> <connection>scm:git:git@github.com:thingsboard/tbel.git</connection> <url>scm:git:git@github.com:thingsboard/tbel.git</url> <developerConnection>scm:git:git@github.com:thingsboard/tbel.git</developerConnection> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/thingsboard/tbel/issues</url> </issueManagement> <developers> <developer> <name>All developers are listed on the team website</name> <url>http://www.jboss.org/drools/team</url> </developer> <developer> <id>ikulikov</id> <name>Igor Kulikov</name> <email>ikulikov@thingsboard.io</email> </developer> </developers> <contributors> <contributor> <name>All contributors are listed on the team website</name> <url>http://www.jboss.org/drools/team</url> </contributor> </contributors> <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> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav</artifactId> <version>1.0-beta-2</version> </extension> </extensions> <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> <!--<requireMavenVersion>--> <!--<version>[3.0.3,)</version>--> <!--</requireMavenVersion>--> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <release>17</release> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</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> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>maven-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <doclint>-accessibility,-missing</doclint> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.18.1</version> <configuration> <runOrder>alphabetical</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> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.8</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> <resources> <resource> <directory>.</directory> <includes> <include>build.properties</include> </includes> </resource> <resource> <directory>src/main/resources</directory> </resource> </resources> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.8.1</version> </plugin> </plugins> </reporting> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.3.1</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>gpg-sign</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <!-- Prevent gpg from using pinentry programs. Fixes: gpg: signing failed: Inappropriate ioctl for device --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> </project>