-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
170c696
commit a21ad5d
Showing
7 changed files
with
89 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.6") | ||
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "2.0") | ||
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.1.0-M1") | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
// Your profile name of the sonatype account. The default is the same with the organization value | ||
sonatypeProfileName := "cc.redberry" | ||
|
||
// To sync with Maven central, you need to supply the following information: | ||
publishMavenStyle := true | ||
|
||
// License of your choice | ||
licenses := Seq("APL2" -> url("http://www.apache.org/licenses/LICENSE-2.0.txt")) | ||
homepage := Some(url("https://github.com/PoslavskySV/rings")) | ||
scmInfo := Some( | ||
ScmInfo( | ||
url("https://github.com/PoslavskySV/rings"), | ||
"scm:[email protected]:PoslavskySV/rings.git" | ||
) | ||
) | ||
developers := List( | ||
Developer( | ||
id = "PoslavskySV", | ||
name = "Stanislav Poslavsky", | ||
email = "[email protected]", | ||
url = url("http://redberry.cc") | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,12 @@ | |
<groupId>cc.redberry</groupId> | ||
<artifactId>rings</artifactId> | ||
<version>2.0</version> | ||
<packaging>jar</packaging> | ||
<name>rings</name> | ||
<url>https://github.com/PoslavskySV/rings/</url> | ||
<description> | ||
Rings: efficient Java/Scala library for polynomial rings | ||
</description> | ||
|
||
<parent> | ||
<groupId>org.sonatype.oss</groupId> | ||
|
@@ -15,6 +21,34 @@ | |
<relativePath/> | ||
</parent> | ||
|
||
<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> | ||
|
||
<developers> | ||
<developer> | ||
<id>PoslavskySV</id> | ||
<email>[email protected]</email> | ||
<name>Stanislav Poslavsky</name> | ||
<roles> | ||
<role>architect</role> | ||
<role>developer</role> | ||
<role>tester</role> | ||
<role>documentation</role> | ||
</roles> | ||
<timezone>UTC+04:00</timezone> | ||
<url>https://github.com/PoslavskySV</url> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
<connection>scm:git:https://github.com/PoslavskySV/rings.git</connection> | ||
</scm> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters