${project.artifactId}.
ScalaMD: A Scala Markdown Processor.
Here is the list of declaration for scalamd_2.10. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.fusesource.scalamd</groupId> <artifactId>scalamd_2.10</artifactId> <version>1.6</version> </dependency>
If you think this Maven repository POM file listing for scalamd_2.10 is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The scalamd_2.10-1.6 has 6 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Scala | scala-library 2.10.0 Standard library for the Scala Programming Language | 435 |
Parser | scala-compiler 2.10.0 Compiler for the Scala Programming Language | 41 |
File | commons-io 1.4 Commons-IO contains utility classes, stream implementations, file filters, file comparators and endian classes. | 444 |
Data Structure | commons-lang 2.5 Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang. | 208 |
JUnit | junit 4.5 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. | 385 |
The following plugins are used in the scalamd_2.10-1.6.jar
The following packages are defined in the scalamd_2.10-1.6.jar
org.fusesource.scalamd
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- 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.fusesource</groupId> <artifactId>fusesource-pom</artifactId> <version>1.9</version> </parent> <groupId>org.fusesource.scalamd</groupId> <artifactId>scalamd_2.10</artifactId> <version>1.6</version> <packaging>bundle</packaging> <name>${project.artifactId}</name> <description>ScalaMD: A Scala Markdown Processor</description> <inceptionYear>2010</inceptionYear> <properties> <forge-project-id>scalamd</forge-project-id> <scala-version>2.10.0</scala-version> <scala-maven-plugin-version>3.1.0</scala-maven-plugin-version> <maven-surefire-plugin-version>2.12.4</maven-surefire-plugin-version> <bundle-plugin-version>2.3.4</bundle-plugin-version> </properties> <dependencies> <!-- Scala Support: this needs to be copied into every scala project --> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <scope>provided</scope> <version>${scala-version}</version> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-compiler</artifactId> <version>${scala-version}</version> <scope>provided</scope> </dependency> <!-- Testing Deps --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.4</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.5</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.specs2</groupId> <artifactId>specs2_2.10</artifactId> <version>1.13</version> <scope>test</scope> </dependency> </dependencies> <url>http://${forge-project-id}.fusesource.com/maven/${project.version}</url> <scm> <connection>scm:git:git://github.com/fusesource/scalamd.git</connection> <developerConnection>scm:git:git@github.com:fusesource/scalamd.git</developerConnection> <url>https://github.com/fusesource/scalamd/blob/master</url> </scm> <distributionManagement> <site> <id>website.fusesource.org</id> <name>website</name> <url>dav:http://fusesource.com/forge/dav/${forge-project-id}/maven/${project.version}</url> </site> </distributionManagement> <build> <defaultGoal>install</defaultGoal> <sourceDirectory>src/main/scala</sourceDirectory> <testSourceDirectory>src/test/scala</testSourceDirectory> <resources> <resource> <directory>target/schema</directory> <includes> <include>**/*</include> </includes> </resource> <resource> <directory>src/main/resources</directory> <includes> <include>**/*</include> </includes> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <version>${scala-maven-plugin-version}</version> <executions> <execution> <goals> <goal>compile</goal> <goal>testCompile</goal> </goals> </execution> </executions> <configuration> <scaladocClassName>scala.tools.nsc.ScalaDoc</scaladocClassName> <jvmArgs> <jvmArg>-Xmx1024m</jvmArg> <jvmArg>-Xss8m</jvmArg> </jvmArgs> <args> <arg>-deprecation</arg> </args> <scalaVersion>${scala-version}</scalaVersion> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin-version}</version> <configuration> <!-- we must turn off the use of system class loader so our tests can find stuff - otherwise ScalaSupport compiler can't find stuff --> <useSystemClassLoader>false</useSystemClassLoader> <!--forkMode>pertest</forkMode--> <childDelegation>false</childDelegation> <useFile>true</useFile> <failIfNoTests>false</failIfNoTests> <includes> <include>**/*Spec.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${bundle-plugin-version}</version> <extensions>true</extensions> <inherited>true</inherited> <configuration> <instructions> <Implementation-Title>${project.description}</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> <Bundle-Name>${project.artifactId}</Bundle-Name> <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName> <Export-Package>{local-packages};version=${project.version};-noimport:=true</Export-Package> <Import-Package>*</Import-Package> <Private-Package>!*</Private-Package> <_versionpolicy-impl>[$(version;==;$(@)),$(version;=+;$(@)))</_versionpolicy-impl> <_versionpolicy-uses>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy-uses> <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy> <_failok>false</_failok> </instructions> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <!-- Generate the Scala Docs so that they can be included in the javadoc artifact --> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <version>${scala-maven-plugin-version}</version> <executions> <execution> <id>doc</id> <phase>process-classes</phase> <goals> <goal>doc</goal> </goals> <configuration> <reportOutputDirectory>${project.build.directory}</reportOutputDirectory> <outputDirectory>apidocs</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>