-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #681 from playframework/fix_pom
Fix pom
- Loading branch information
Showing
1 changed file
with
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,26 +76,15 @@ lazy val commonSettings = Def.settings( | |
// Work around 2.12 bug which prevents javadoc in nested java classes from compiling. | ||
"-no-java-comments", | ||
), | ||
pomExtra := ( | ||
<url>https://github.com/playframework/play-ws</url> | ||
<licenses> | ||
<license> | ||
<name>Apache License, Version 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
<scm> | ||
<url>https://github.com/playframework/play-ws</url> | ||
<connection>scm:git:git@github.com/playframework/play-ws.git</connection> | ||
</scm> | ||
<developers> | ||
<developer> | ||
<id>playframework</id> | ||
<name>Play Team</name> | ||
<url>http://playframework.com/</url> | ||
</developer> | ||
</developers>), | ||
licenses := Seq( | ||
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0") | ||
), | ||
developers += Developer( | ||
"playframework", | ||
"Play Team", | ||
"[email protected]", | ||
url("https://playframework.com") | ||
), | ||
javacOptions in Compile ++= javacSettings, | ||
javacOptions in Test ++= javacSettings, | ||
headerLicense := { | ||
|