This repository was archived by the owner on Mar 11, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +49
-1
lines changed
powerapi-sampling/src/test/scala/org/powerapi/sampling Expand file tree Collapse file tree 4 files changed +49
-1
lines changed Original file line number Diff line number Diff line change 1+ import SonatypeKeys ._
2+
3+ sonatypeSettings
4+
15name := " powerapi-core"
26
7+ organization := " org.powerapi"
8+
39// App
410libraryDependencies ++= Seq (
511 " com.typesafe.akka" %% " akka-actor" % " 2.3.6" ,
@@ -18,6 +24,47 @@ libraryDependencies ++= Seq(
1824 " org.scalatest" %% " scalatest" % " 2.2.2" % " test"
1925)
2026
27+ startYear := Some (2014 )
28+
29+ licenses := Seq (" AGPL-3.0" -> url(" http://www.gnu.org/licenses/agpl-3.0.txt" ))
30+
31+ pomExtra := {
32+ <url >http:// www.powerapi.org/</ url>
33+ <scm >
34+ <url >github.com/ Spirals - Team / powerapi</url >
35+ <connection >scm: git: git@ github.com: Spirals - Team / powerapi.git</connection >
36+ <developerConnection >scm: git: git@ github.com: Spirals - Team / powerapi.git</developerConnection >
37+ </scm >
38+ <developers >
39+ <developer >
40+ <id >mcolmant</id >
41+ <name >Maxime Colmant </name >
42+ <url >http:// researchers.lille.inria.fr/ colmant/</ url>
43+ </developer >
44+ <developer >
45+ <id >rouvoy</id >
46+ <name >Romain Rouvoy </name >
47+ <url >http:// www.lifl.fr/~ rouvoy/</ url>
48+ </developer >
49+ <developer >
50+ <id >lhuertas</id >
51+ <name >Lo ïc Huertas </name >
52+ </developer >
53+ </developers >
54+ }
55+
56+ publishMavenStyle := true
57+
58+ publishArtifact in Test := false
59+
60+ publishTo := {
61+ val nexus = " https://oss.sonatype.org/"
62+ if (isSnapshot.value)
63+ Some (" snapshots" at nexus + " content/repositories/snapshots" )
64+ else
65+ Some (" releases" at nexus + " service/local/staging/deploy/maven2" )
66+ }
67+
2168val downloadBluecoveLibs = TaskKey [Seq [File ]](" download-bluecove" )
2269
2370downloadBluecoveLibs := {
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ import akka.actor.ActorSystem
2626import akka .testkit .TestKit
2727import akka .util .Timeout
2828import org .powerapi .UnitTest
29- import scala .collection .BitSet
3029import scala .concurrent .duration .DurationInt
3130
3231class SamplingConfigurationSuite (system : ActorSystem ) extends UnitTest (system) {
Original file line number Diff line number Diff line change 1+ addSbtPlugin(" com.jsuereth" % " sbt-pgp" % " 1.0.0" )
Original file line number Diff line number Diff line change 1+ addSbtPlugin(" org.xerial.sbt" % " sbt-sonatype" % " 0.2.2" )
You can’t perform that action at this time.
0 commit comments