Download portlet-1.0.0.jar file

Introduction

You can download portlet-1.0.0.jar in this page.

License

BSD License

Type List

portlet-1.0.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.lucee/portlet/pom.properties
META-INF/maven/org.lucee/portlet/pom.xml
javax.portlet.ActionRequest.class
javax.portlet.ActionResponse.class
javax.portlet.GenericPortlet.class
javax.portlet.PortalContext.class
javax.portlet.Portlet.class
javax.portlet.PortletConfig.class
javax.portlet.PortletContext.class
javax.portlet.PortletException.class
javax.portlet.PortletMode.class
javax.portlet.PortletModeException.class
javax.portlet.PortletPreferences.class
javax.portlet.PortletRequest.class
javax.portlet.PortletRequestDispatcher.class
javax.portlet.PortletResponse.class
javax.portlet.PortletSecurityException.class
javax.portlet.PortletSession.class
javax.portlet.PortletSessionUtil.class
javax.portlet.PortletURL.class
javax.portlet.PreferencesValidator.class
javax.portlet.ReadOnlyException.class
javax.portlet.RenderRequest.class
javax.portlet.RenderResponse.class
javax.portlet.UnavailableException.class
javax.portlet.UnmodifiableException.class
javax.portlet.ValidatorException.class
javax.portlet.WindowState.class
javax.portlet.WindowStateException.class

Pom

portlet-1.0.0.pom file content.

<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.lucee</groupId>
  <artifactId>portlet</artifactId>
  <version>1.0.0</version>
  <name>portlet</name>
  <packaging>bundle</packaging>

  <description>OSGi Version of portlet</description>
  <url>http://maven.lucee.org/portlet/</url>

  <!-- same license as the original jar -->
  <licenses>

    <license>
		<name>BSD License</name>
		<url>http://www.opensource.org/licenses/bsd-license.php</url>
		<distribution>repo</distribution>
	</license>

  </licenses>

  <developers>

    <developer>
      <id>micstriit</id>
      <name>Michael Offner</name>
      <email>michael@lucee.org</email>
      <organization>Lucee Association Switzerland</organization>
      <organizationUrl>http://lucee.org</organizationUrl>
      <roles>
        <role>Project-Administrator</role>
        <role>Developer</role>
      </roles>
      <timezone>+1</timezone>
    </developer>

  </developers>

  <build>
    <plugins>
      <plugin>
      <groupId>org.sonatype.plugins</groupId>
      <artifactId>nexus-staging-maven-plugin</artifactId>
      <version>1.6.3</version>
      <extensions>true</extensions>
      <configuration>
        <serverId>ossrh</serverId>
        <nexusUrl>https://oss.sonatype.org/</nexusUrl>
        <autoReleaseAfterClose>true</autoReleaseAfterClose>
      </configuration>
    </plugin>

    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-gpg-plugin</artifactId>
      <version>1.5</version>
      <executions>
        <execution>
          <id>sign-artifacts</id>
          <phase>verify</phase>
          <goals>
            <goal>sign</goal>
          </goals>
        </execution>
      </executions>
    </plugin>

    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-release-plugin</artifactId>
      <version>2.5</version>
      <configuration>
        <autoVersionSubmodules>true</autoVersionSubmodules>
        <useReleaseProfile>false</useReleaseProfile>
        <releaseProfiles>release</releaseProfiles>
        <goals>deploy</goals>
      </configuration>
    </plugin>

    <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-dependency-plugin</artifactId>
         <version>2.10</version>
         <executions>
           <execution>
             <id>unpack</id>
             <phase>validate</phase>
             <goals>
               <goal>unpack</goal>
             </goals>
             <configuration>
               <artifactItems>
                 <artifactItem>
                   <groupId>portlet-api</groupId>
                    <artifactId>portlet-api</artifactId>
                    <version>1.0</version>
                   <type>jar</type>
                   <overWrite>false</overWrite>
                   <outputDirectory>${project.build.directory}/classes</outputDirectory>
                 </artifactItem>
               </artifactItems>
               <overWriteReleases>true</overWriteReleases>
               <overWriteSnapshots>true</overWriteSnapshots>
             </configuration>
           </execution>
         </executions>
       </plugin>

      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>3.0.1</version>
        <configuration>
          <unpackBundle>true</unpackBundle>
          <instructions>
            <Bundle-Name>org.lucee.portlet</Bundle-Name>
            <Bundle-SymbolicName>org.lucee.portlet</Bundle-SymbolicName>
            <Bundle-Description>OSGI version of jar ${project.name}</Bundle-Description>
            <Export-Package>*</Export-Package>
            <!-- <Require-Bundle></Require-Bundle> -->
            <!-- <Require-Bundle-Fragment></Require-Bundle-Fragment> -->
            <!-- <Import-Package>*</Import-Package> -->
            <!-- <DynamicImport-Package>*</DynamicImport-Package> -->
            <!-- <Fragment-Host></Fragment-Host> -->
          </instructions>
        </configuration>
        <extensions>true</extensions>
      </plugin>


    </plugins>
  </build>
  


  <scm>
    <url>https://github.com/lucee/osgi-bundle-portlet</url>
    <connection>scm:git:git://github.com/lucee/osgi-bundle-portlet.git</connection>
    <developerConnection>scm:git:git@github.com:lucee/osgi-bundle-portlet.git</developerConnection>
    <tag>portlet OSGi library</tag>
  </scm>

  <distributionManagement>
    <repository>
    <id>ossrh</id>
    <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
  </repository>
    <snapshotRepository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
  </distributionManagement>

</project>

POM Entry

<dependency>
   <groupId>org.lucee</groupId>
   <artifactId>portlet</artifactId>
   <version>1.0.0</version>
</dependency>

Download

If you think the following portlet-1.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download portlet-1.0.0.jar file




PreviousNext

Related