spl-evaluation-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cz.cuni.mff.d3s.spl</groupId> <artifactId>spl-evaluation-java</artifactId> <version>1.0.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>cz.cuni.mff.d3s.spl</groupId> <artifactId>spl-evaluation-java</artifactId> <name>spl-evaluation-java</name> <version>1.0.4</version> <description>Stochastice Performance Logic is a formalism for capturing performance assumptions. It is, for example, possible to capture assumption that newer version of a function bar is faster than the previous version or that library foobar is faster than library barfoo when rendering antialiased text. The purpose of this framework is to allow evaluation of SPL formulas inside Java applications.</description> <url>http://d3s.mff.cuni.cz/research/development_awareness/</url> <inceptionYear>2017</inceptionYear> <developers> <developer> <id>vhorky</id> <name>Vojtěch Horký</name> <email>horky@d3s.mff.cuni.cz</email> <url>http://d3s.mff.cuni.cz/~horky/</url> </developer> <developer> <id>pstefan</id> <name>Petr Stefan</name> <email>ps@stdin.cz</email> <url>https://ps.stdin.cz</url> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <scm> <connection>scm:git:git://github.com/SemaiCZE/spl-mavention-java.git</connection> <developerConnection>scm:git:ssh://github.com/SemaiCZE/spl-evaluation-java.git</developerConnection> <url>https://github.com/SemaiCZE/spl-evaluation-java/tree/master</url> </scm> <organization> <name>D3S MFF, Charles University in Prague</name> <url>http://d3s.mff.cuni.cz</url> </organization> <build> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <configuration> <archive> <manifest> <mainClass>cz.cuni.mff.d3s.spl.Main</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javacc-maven-plugin</artifactId> <version>2.6</version> <executions> <execution> <phase>generate-sources</phase> <goals> <goal>javacc</goal> </goals> <configuration> <sourceDirectory>src/main/java/cz/cuni/mff/d3s/spl/formula</sourceDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.9.1</version> <executions> <execution> <id>add-source</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>src/gen/java</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <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> </plugins> </build> <dependencies> <dependency> <groupId>org.wso2.msf4j</groupId> <artifactId>msf4j-service</artifactId> <version>2.0.0</version> <type>pom</type> <scope>compile</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <artifactId>maven-jxr-plugin</artifactId> <version>2.5</version> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.9</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <doctitle><h1> Stochastic Performance Logic (SPL) evaluation engine</h1></doctitle> <bottom><i>Copyright &#169; 2015 — 2017 Charles University in Prague.</i></bottom> </configuration> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.20</version> </plugin> </plugins> </reporting> <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> <properties> <swagger-core-version>1.5.12</swagger-core-version> <jersey2-version>2.22.2</jersey2-version> <java.version>1.8</java.version> <junit-version>4.12</junit-version> <jetty-version>9.2.9.v20150224</jetty-version> <maven.compiler.target>${java.version}</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <servlet-api-version>2.5</servlet-api-version> <logback-version>1.1.7</logback-version> <maven.compiler.source>${java.version}</maven.compiler.source> </properties> </project>