dadl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.ops4j</groupId>
<artifactId>dadl</artifactId>
<version>0.3.0</version>
</dependency><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>
<parent>
<groupId>org.ops4j</groupId>
<artifactId>master</artifactId>
<version>4.2.0</version>
</parent>
<artifactId>dadl</artifactId>
<version>0.3.0</version>
<packaging>pom</packaging>
<name>OPS4J Data Description Language (DADL) Reactor</name>
<description>
DADL is a language and a toolset for describing, parsing and generating data formats
of all sorts.
</description>
<scm>
<connection>scm:git:git@github.com:ops4j/org.ops4j.dadl.git</connection>
<developerConnection>scm:git:git@github.com:ops4j/org.ops4j.dadl.git</developerConnection>
<url>git@github.com:ops4j/org.ops4j.dadl.git</url>
<tag>dadl-0.3.0</tag>
</scm>
<modules>
<module>dadl-metamodel</module>
<module>dadl-generator</module>
<module>dadl-maven-plugin</module>
<module>dadl-processor</module>
<module>dadl-manual</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>com.sun.codemodel</groupId>
<artifactId>codemodel</artifactId>
<version>2.6</version>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.el</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.12</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${jacoco.argLine}</argLine>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<url>http://ops4j.github.io/dadl/${project.version}/</url>
<inceptionYear>2015</inceptionYear>
<issueManagement>
<system>jira</system>
<url>http://team.ops4j.org/browse/DADL</url>
</issueManagement>
<developers>
<developer>
<id>hwellmann</id>
<name>Harald Wellmann</name>
<email>harald.wellmann@gmx.de</email>
<roles>
<role>Developer</role>
</roles>
<timezone>UTC+1</timezone>
</developer>
</developers>
<profiles>
<!-- Profiles for "Sonar" -->
<!-- The sonar profile should be activated by setting property 'sonar'. That's important because
we need to set an empty 'jacoco.argLine' otherwise. You can't define an empty default for that property
in the global properties section because the empty value will override the value from Jacoco. -->
<profile>
<id>no-sonar</id>
<activation>
<property>
<name>!sonar</name>
</property>
</activation>
<properties>
<jacoco.argLine />
</properties>
</profile>
<profile>
<id>sonar</id>
<activation>
<property>
<name>sonar</name>
</property>
</activation>
<properties>
<sonar.jacoco.reportPath>${user.dir}/target/jacoco.exec</sonar.jacoco.reportPath>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>2.6</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>jacoco</id>
<phase>validate</phase>
<goals>
<goal>prepare-agent</goal>
</goals>
<configuration>
<append>true</append>
<destFile>${sonar.jacoco.reportPath}</destFile>
<propertyName>jacoco.argLine</propertyName>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>