Skip to content

Commit

Permalink
1.5.0 jshuntingyard - type safety, new tests some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
janmagnus committed Jun 30, 2015
1 parent ba16622 commit 7b8c524
Show file tree
Hide file tree
Showing 10 changed files with 208 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Tue Jun 30 11:50:12 CEST 2015
evaluator-application-1.5.0.pom>=
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<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.oss.evaluator</groupId>
<artifactId>evaluator-application</artifactId>
<version>1.5.0</version>
<packaging>pom</packaging>

<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<organization>
<name>Open Software Solutions GmbH</name>
<url>http://www.open-software-solutions.ch</url>
</organization>

<developers>
<developer>
<id>mkarlsson</id>
<name>Magnus Karlsson</name>
<email>[email protected]</email>
<organization>OSS</organization>
<organizationUrl>http://www.open-software-solutions.ch</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
<developer>
<id>dmueller</id>
<name>Donat Müller</name>
<email>[email protected]</email>
<organization>OSS</organization>
<organizationUrl>http://www.open-software-solutions.ch</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>

<issueManagement>
<system>GitHub</system>
<url>https://github.com/OpenSoftwareSolutions/jshuntingyard/issues</url>
</issueManagement>

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

<build>
<plugins>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<modules>
<module>jshuntingyard</module>
</modules>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#NOTE: This is an internal implementation file, its format can be changed without prior notice.
#Tue Jun 30 11:48:59 CEST 2015
http\://repo.maven.apache.org/maven2/.lastUpdated=1435657739570
http\://repo.maven.apache.org/maven2/.error=
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
<groupId>org.oss.evaluator</groupId>
<artifactId>evaluator-application</artifactId>
<versioning>
<release>1.4.0</release>
<release>1.5.0</release>
<versions>
<version>1.3.1</version>
<version>1.4.0</version>
<version>1.5.0</version>
</versions>
<lastUpdated>20150625092915</lastUpdated>
<lastUpdated>20150630095012</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#NOTE: This is an Aether internal implementation file, its format can be changed without prior notice.
#Tue Jun 30 11:50:23 CEST 2015
evaluator-jshuntingyard-1.5.0-sources.jar>=
evaluator-jshuntingyard-1.5.0.jar>=
evaluator-jshuntingyard-1.5.0-javadoc.jar>=
evaluator-jshuntingyard-1.5.0.pom>=
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
<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.oss.evaluator</groupId>
<artifactId>evaluator-jshuntingyard</artifactId>
<version>1.5.0</version>
<packaging>jar</packaging>
<parent>
<groupId>org.oss.evaluator</groupId>
<artifactId>evaluator-application</artifactId>
<version>1.5.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<dependencies>
<dependency>
<groupId>net.sourceforge.jeval</groupId>
<artifactId>jeval</artifactId>
<version>0.9.4</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<inherited>true</inherited>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<inherited>true</inherited>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.5.201505241946</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>default-report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>default-check</id>
<goals>
<goal>check</goal>
</goals>

<configuration>
<rules>
<!-- implementation is needed only for Maven 2 -->
<rule implementation="org.jacoco.maven.RuleConfiguration">
<element>BUNDLE</element>
<limits>
<!-- implementation is needed only for Maven 2 -->
<limit implementation="org.jacoco.report.check.Limit">
<counter>COMPLEXITY</counter>
<value>COVEREDRATIO</value>
<minimum>0.60</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
<groupId>org.oss.evaluator</groupId>
<artifactId>evaluator-jshuntingyard</artifactId>
<versioning>
<release>1.4.0</release>
<release>1.5.0</release>
<versions>
<version>1.3.1</version>
<version>1.4.0</version>
<version>1.5.0</version>
</versions>
<lastUpdated>20150625092926</lastUpdated>
<lastUpdated>20150630095023</lastUpdated>
</versioning>
</metadata>

0 comments on commit 7b8c524

Please sign in to comment.