Skip to content

Commit

Permalink
Merge pull request #5 from opcodevoid/jlatexmath-maven
Browse files Browse the repository at this point in the history
Jlatexmath maven
  • Loading branch information
calixteman authored Dec 14, 2016
2 parents 7ae0b2b + d83fc0a commit 7b99ab5
Show file tree
Hide file tree
Showing 2 changed files with 117 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,5 @@ Name: org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmsb10.ttf
Content-Type: application/x-font

Name: org/scilab/forge/jlatexmath/fonts/latin/jlm_jlmtt10.ttf
Content-Type: application/x-font
Content-Type: application/x-font

115 changes: 115 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
<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.scilab.forge</groupId>
<artifactId>jlatexmath</artifactId>
<version>1.0.5</version>
<packaging>jar</packaging>

<name>JLaTeXMath</name>
<description>A Java API to render LaTeX</description>
<url>http://forge.scilab.org/index.php/p/jlatexmath</url>

<licenses>
<license>
<name>GPLv2 with Classpath Exception</name>
<url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<developers>
<developer>
<id>ledru</id>
<name>Sylvestre Ledru</name>
</developer>
<developer>
<id>denizet</id>
<name>Calixte Denizet</name>
</developer>
</developers>

<scm>
<url>git://git.forge.scilab.org/jlatexmath.git</url>
</scm>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<sourceDirectory>src</sourceDirectory>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
<configuration>
<archive>
<manifestFile>MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<archive>
<manifestFile>MANIFEST.MF</manifestFile>
</archive>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>

<resources>
<resource>
<directory>src</directory>
<filtering>false</filtering>
<includes>
<include>**/*.xml</include>
<include>**/*.ttf</include>
<include>**/*.txt</include>
<include>**/COPYING</include>
<include>**/LICENSE</include>
<include>**/MANIFEST.MF</include>
</includes>
</resource>
<resource>
<directory>${basedir}</directory>
<targetPath>META-INF</targetPath>
<filtering>false</filtering>
<includes>
<include>COPYING</include>
<include>LICENSE</include>
</includes>
</resource>
</resources>
</build>
</project>

0 comments on commit 7b99ab5

Please sign in to comment.