Skip to content

Commit

Permalink
Fix pom/sbt issues for release
Browse files Browse the repository at this point in the history
  • Loading branch information
PoslavskySV committed Apr 4, 2018
1 parent 3eb63e9 commit 6dc0f5e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ object GF {
* @param cfRingZp64 coefficient ring
* @param variable variable
*/
final case class UnivariateRingZp64 private(cfRingZp64: IntegersZp64, override val variable: String)
final case class UnivariateRingZp64(cfRingZp64: IntegersZp64, override val variable: String)
extends AUnivariateRingZp64(rings.Rings.UnivariateRingZp64(cfRingZp64), variable) {
val modulus: Long = cfRingZp64.modulus
/**
Expand All @@ -597,11 +597,6 @@ object UnivariateRingZp64 {
* Zp[variable] with specified modulus
*/
def apply(modulus: Long, variable: String): UnivariateRingZp64 = new UnivariateRingZp64(new IntegersZp64(modulus), variable)

/**
* Zp[variable] with specified coefficient ring (Zp)
*/
def apply(domain: IntegersZp64, variable: String) = new UnivariateRingZp64(domain, variable)
}

/**
Expand Down
13 changes: 11 additions & 2 deletions rings/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,15 @@
</scm>

<build>
<testResources>
<testResource>
<directory>src/test/resources/cc/redberry/rings/poly/multivar</directory>
<excludes>
<exclude>*</exclude>
</excludes>
</testResource>
</testResources>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -66,7 +75,7 @@
<source>1.8</source>
<target>1.8</target>
<!--<compilerArguments>-->
<!--<verbose/>-->
<!--<verbose/>-->
<!--</compilerArguments>-->
</configuration>
<executions>
Expand All @@ -81,7 +90,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<version>3.0.2</version>
<executions>
<execution>
<goals>
Expand Down

0 comments on commit 6dc0f5e

Please sign in to comment.