-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME
31 lines (26 loc) · 1.01 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
scala-lang-osgi add the required information to the MANIFEST.MF so that scala-library, scala-reflect, or scala-swing can be used as a bundle in OSGi environment.
Bundle-SymbolicName
org.scala-lang-osgi.scala-library for scala-library
org.scala-lang-osgi.scala-reflect for scala-reflect
org.scala-lang-osgi.scala-swing for scala-swing
Currently these jars are not deployed to any Maven repository, you need to check out the project, build it youself by run
mvn install
then add one or all of them to your Maven POM file:
<properties>
<scala.version>2.10.2</scala.version>
</properties>
<dependency>
<groupId>org.scala-lang-osgi</groupId>
<artifactId>scala-library</artifactId>
<version>${scala.version}</version>
</dependency>
<dependency>
<groupId>org.scala-lang-osgi</groupId>
<artifactId>scala-reflect</artifactId>
<version>${scala.version}</version>
</dependency>
<dependency>
<groupId>org.scala-lang-osgi</groupId>
<artifactId>scala-swing</artifactId>
<version>${scala.version}</version>
</dependency>