You can download artemis-selector-2.1.0.jar in this page.
Apache License
artemis-selector-2.1.0.jar file has the following types.
META-INF/DEPENDENCIES META-INF/LICENSE META-INF/MANIFEST.MF META-INF/NOTICE META-INF/maven/org.apache.activemq/artemis-selector/pom.properties META-INF/maven/org.apache.activemq/artemis-selector/pom.xml org.apache.activemq.artemis.selector.filter.ArithmeticExpression.class org.apache.activemq.artemis.selector.filter.BinaryExpression.class org.apache.activemq.artemis.selector.filter.BooleanExpression.class org.apache.activemq.artemis.selector.filter.ComparisonExpression.class org.apache.activemq.artemis.selector.filter.ConstantExpression.class org.apache.activemq.artemis.selector.filter.Expression.class org.apache.activemq.artemis.selector.filter.FilterException.class org.apache.activemq.artemis.selector.filter.Filterable.class org.apache.activemq.artemis.selector.filter.LogicExpression.class org.apache.activemq.artemis.selector.filter.PropertyExpression.class org.apache.activemq.artemis.selector.filter.UnaryExpression.class org.apache.activemq.artemis.selector.filter.XPathExpression.class org.apache.activemq.artemis.selector.filter.XQueryExpression.class org.apache.activemq.artemis.selector.filter.XalanXPathEvaluator.class org.apache.activemq.artemis.selector.hyphenated.HyphenatedParser.class org.apache.activemq.artemis.selector.hyphenated.HyphenatedParserConstants.class org.apache.activemq.artemis.selector.hyphenated.HyphenatedParserTokenManager.class org.apache.activemq.artemis.selector.hyphenated.ParseException.class org.apache.activemq.artemis.selector.hyphenated.SimpleCharStream.class org.apache.activemq.artemis.selector.hyphenated.Token.class org.apache.activemq.artemis.selector.hyphenated.TokenMgrError.class org.apache.activemq.artemis.selector.impl.LRUCache.class org.apache.activemq.artemis.selector.impl.SelectorParser.class org.apache.activemq.artemis.selector.strict.ParseException.class org.apache.activemq.artemis.selector.strict.SimpleCharStream.class org.apache.activemq.artemis.selector.strict.StrictParser.class org.apache.activemq.artemis.selector.strict.StrictParserConstants.class org.apache.activemq.artemis.selector.strict.StrictParserTokenManager.class org.apache.activemq.artemis.selector.strict.Token.class org.apache.activemq.artemis.selector.strict.TokenMgrError.class
artemis-selector-2.1.0.pom file content.
<!-- 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. --> <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> <parent> <groupId>org.apache.activemq</groupId> <artifactId>artemis-pom</artifactId> <version>2.1.0</version> </parent> <artifactId>artemis-selector</artifactId> <packaging>jar</packaging> <name>ActiveMQ Artemis Selector Implementation</name> <properties> <activemq.basedir>${project.basedir}/..</activemq.basedir> </properties> <dependencies> <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> <version>2.7.2</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>ibm-jdk8</id> <activation> <jdk>1.8</jdk> <property> <name>java.vendor</name> <value>IBM Corporation</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <!-- version 3.2 is having problems with the APT processor resulting in java.lang.IllegalStateException: endPosTable already set --> <version>3.1</version> <configuration combine.self="override" /> </plugin> </plugins> </build> </profile> </profiles> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgs> <!-- TODO: do this only for generated-sources --> <arg>-Xep:MissingOverride:WARN</arg> </compilerArgs> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javacc-maven-plugin</artifactId> <version>2.6</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>javacc</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${basedir}/target/generated-sources/javacc</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.codehaus.mojo</groupId> <artifactId>javacc-maven-plugin</artifactId> <versionRange>[2.6,)</versionRange> <goals> <goal>javacc</goal> </goals> </pluginExecutionFilter> <action> <execute /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>
<dependency> <groupId>org.apache.activemq</groupId> <artifactId>artemis-selector</artifactId> <version>2.1.0</version> </dependency>
If you think the following artemis-selector-2.1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download artemis-selector-2.1.0.jar file