markdown-display-portlet
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>br.com.thiagomoreira.liferay.plugins.markdown-display-app</groupId> <artifactId>markdown-display-portlet</artifactId> <version>3.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright © 2015 Thiago Moreira (tmoreira2020@gmail.com) Licensed 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>br.com.thiagomoreira.liferay.plugins.markdown-display-app</groupId> <artifactId>portlets</artifactId> <version>3.0.0</version> </parent> <artifactId>markdown-display-portlet</artifactId> <name>Markdown Display Portlet</name> <description>This app converts a Markdown url to HTML.</description> <dependencies> <dependency> <groupId>com.vladsch.flexmark</groupId> <artifactId>flexmark-all</artifactId> <version>0.32.24</version> <classifier>lib</classifier> </dependency> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>osgi.cmpn</artifactId> </dependency> <dependency> <groupId>biz.aQute.bnd</groupId> <artifactId>biz.aQute.bndlib</artifactId> <version>3.3.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.liferay</groupId> <artifactId>com.liferay.portal.configuration.metatype.api</artifactId> <version>2.0.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.liferay</groupId> <artifactId>com.liferay.portal.upgrade.api</artifactId> <version>3.3.1</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-maven-plugin</artifactId> <version>3.3.0</version> <configuration> <bnd><![CDATA[Bundle-SymbolicName: br.com.thiagomoreira.liferay.plugins.markdown-display-portlet Liferay-Require-SchemaVersion: 1.0 Bundle-ClassPath:\ .,\ lib/autolink.jar,\ lib/flexmark-all.jar,\ lib/openhtmltopdf-core.jar,\ lib/openhtmltopdf-pdfbox.jar,\ lib/openhtmltopdf-rtl-support.jar -includeresource:\ lib/autolink.jar=autolink-0.6.0.jar,\ lib/flexmark-all.jar=flexmark-all-0.32.24-lib.jar,\ lib/openhtmltopdf-core.jar=openhtmltopdf-core-0.0.1-RC9.jar,\ lib/openhtmltopdf-pdfbox.jar=openhtmltopdf-pdfbox-0.0.1-RC9.jar,\ lib/openhtmltopdf-rtl-support.jar=openhtmltopdf-rtl-support-0.0.1-RC9.jar -jsp: *.jsp,*.jspf -contract: JavaPortlet,JavaServlet -plugin.bundle: com.liferay.ant.bnd.resource.bundle.ResourceBundleLoaderAnalyzerPlugin -plugin.jsp: com.liferay.ant.bnd.jsp.JspAnalyzerPlugin -plugin.sass: com.liferay.ant.bnd.sass.SassAnalyzerPlugin -sass: * -sources: true -metatype: *]]></bnd> </configuration> <dependencies> <dependency> <groupId>biz.aQute.bnd</groupId> <artifactId>biz.aQute.bndlib</artifactId> <version>3.3.0</version> </dependency> <dependency> <groupId>com.liferay</groupId> <artifactId>com.liferay.ant.bnd</artifactId> <version>2.0.50</version> </dependency> </dependencies> <executions> <execution> <goals> <goal>bnd-process</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.liferay</groupId> <artifactId>com.liferay.css.builder</artifactId> <version>2.0.2</version> <configuration> <docrootDirName>src/main/resources</docrootDirName> </configuration> <executions> <execution> <goals> <goal>build</goal> </goals> <phase>generate-resources</phase> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.6</version> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> <excludes> <exclude>**/META-INF/resources/**/.sass-cache/</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project>