Maven Repository - POM file for JSP juel 2.1.2 2.1.2

Summary

Java Unified Expression Language.

Implementation of the Java Unified Expression Language as specified by the Expression Language Specification, Version 2.1: part of the JSP 2.1 standard (JSR-245)..

Declaration

Here is the list of declaration for juel. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>de.odysseus.juel</groupId>
   <artifactId>juel</artifactId>
   <version>2.1.2</version>
</dependency>

If you think this Maven repository POM file listing for juel is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.

Depends on

The juel-2.1.2 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 3.8.1
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
1966

Plugin

The following plugins are used in the juel-2.1.2.jar

  1. maven-compiler-plugin
  2. maven-jar-plugin
  3. maven-javadoc-plugin
  4. maven-source-plugin

Packages

The following packages are defined in the juel-2.1.2.jar

de.odysseus.el
de.odysseus.el.misc
de.odysseus.el.tree
de.odysseus.el.tree.impl
de.odysseus.el.tree.impl.ast
de.odysseus.el.util
javax.el




POM File Source

Here is the content of the POM file.

<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>de.odysseus.juel</groupId>
  <artifactId>juel</artifactId>
  <packaging>jar</packaging>

  <name>Java Unified Expression Language</name>
  <version>2.1.2</version>
  <description>
    Implementation of the Java Unified Expression Language as specified
    by the Expression Language Specification, Version 2.1: part of the
    JSP 2.1 standard (JSR-245).
  </description>

  <url>http://juel.sourceforge.net/</url>
  <inceptionYear>2006</inceptionYear>

  <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>

  <organization>
    <name>Odysseus Software GmbH</name>
    <url>http://www.odysseus.de/</url>
  </organization>

  

  <contributors>
    <contributor>
      <name>Wolfgang Haefelinger</name>
      <organization>haefelinger IT</organization>
      <organizationUrl>http://www.haefelinger.it</organizationUrl>
      <roles>
        <role>maven build</role>
      </roles>
    </contributor>
  </contributors>

  <scm>
    <connection>scm:svn:https://juel.svn.sourceforge.net/svnroot/juel/trunk</connection>
    <url>http://juel.svn.sourceforge.net/viewvc/juel/trunk/</url>
  </scm>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
          <optimize>true</optimize>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <addMavenDescriptor>false</addMavenDescriptor>
            <manifestEntries>
              <Specification-Title>Expression Language</Specification-Title>
              <Specification-Version>2.1</Specification-Version>
              <Specification-Vendor>Sun Microsystems Inc.</Specification-Vendor>
              <Implementation-Title>JUEL</Implementation-Title>
              <Implementation-Version>${version}</Implementation-Version>
              <Implementation-Vendor>Odysseus Software GmbH</Implementation-Vendor>
              <Implementation-Vendor-Id>de.odysseus</Implementation-Vendor-Id>
              <Main-Class>de.odysseus.el.tree.impl.Builder</Main-Class>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>

      <plugin>
        <!-- mvn source:jar -->
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <configuration>
          <excludeResources>true</excludeResources>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <reporting>
    <plugins>
      <plugin>
        <!-- mvn javadoc:jar -->
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <configuration>
          <bottom>Copyright &amp;copy; {inceptionYear}-{currentYear} {organizationName}.</bottom>
        </configuration>
      </plugin>
    </plugins>
  </reporting>

</project>