Skip to content

Commit

Permalink
SAK-33299 - Re-release wordcount/autosave because of 12-SNAPSHOT prob…
Browse files Browse the repository at this point in the history
  • Loading branch information
jonespm authored Aug 31, 2017
1 parent b70a527 commit b7c38d2
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 25 deletions.
10 changes: 4 additions & 6 deletions master/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,10 @@
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
<!-- Default empty unless profile activation -->
<random-source></random-source>
<!-- Either use a tag or a SHA so the version is predictable.
If you update this you must also currently update the value inlibrary/src/webapp/editor/ckeditor.launch.js
Source at https://github.com/w8tcha/CKEditor-AutoSave-Plugin -->
<ckeditor.autosave.version>b88e3878f0c7442a52e542f67e76d97e2ce32f80</ckeditor.autosave.version>
<!-- Source at https://github.com/w8tcha/CKEditor-WordCount-Plugin -->
<ckeditor.wordcount.version>b29a29d4dc8a42732ce46720e1efc30c826e4c93</ckeditor.wordcount.version>

<!-- These should only be updated when the webjars version is updated -->
<ckeditor.autosave.version>b88e3878f0c7442a52e542f67e76d97e2ce32f8</ckeditor.autosave.version>
<ckeditor.wordcount.version>b29a29d4dc8a42732ce46720e1efc30c826e4c9</ckeditor.wordcount.version>
<ckeditor.a11ychecker.version>1.1.0</ckeditor.a11ychecker.version>
<ckeditor.balloonpanel.version>4.6.2</ckeditor.balloonpanel.version>
</properties>
Expand Down
24 changes: 12 additions & 12 deletions webjars/ckeditor-autosave/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,28 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>webjars</artifactId>
<groupId>org.sakaiproject.webjars</groupId>
<version>13-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>

<packaging>jar</packaging>
<groupId>org.sakaiproject.webjars</groupId>
<artifactId>ckeditor-autosave</artifactId>
<version>${ckeditor.autosave.version}</version>
<name>CKEditor-autosave-webjar</name>
<description>WebJar for CKEditor-autosave</description>
<url>http://webjars.org</url>

<!-- You must keep these synced in master so they're picked up correctly in library -->
<!-- They're separate here so this can be released independently of the rest of Sakai -->
<!-- Either use a tag or a SHA so the version is predictable. -->
<!-- Source at https://github.com/w8tcha/CKEditor-AutoSave-Plugin -->

<version>b88e3878f0c7442a52e542f67e76d97e2ce32f8</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<upstream.version>${ckeditor.autosave.version}</upstream.version>
<upstream.version>${project.version}</upstream.version>
<upstream.url>https://github.com/w8tcha/CKEditor-AutoSave-Plugin/archive/${upstream.version}</upstream.url>
<destDir>${project.build.outputDirectory}/META-INF/resources/webjars/autosave/${upstream.version}</destDir>
<requirejs>
Expand Down Expand Up @@ -60,11 +65,6 @@
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
</plugin>

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
Expand All @@ -73,7 +73,7 @@
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
Expand Down
19 changes: 12 additions & 7 deletions webjars/ckeditor-wordcount/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,27 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>webjars</artifactId>
<groupId>org.sakaiproject.webjars</groupId>
<version>13-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>

<packaging>jar</packaging>
<groupId>org.sakaiproject.webjars</groupId>
<artifactId>ckeditor-wordcount</artifactId>
<version>${ckeditor.wordcount.version}</version>
<name>CKEditor-wordcount-webjar</name>
<description>WebJar for CKEditor-wordcount</description>
<url>http://webjars.org</url>

<!-- You must keep these synced in master so they're picked up correctly in library -->
<!-- They're separate here so this can be released independently of the rest of Sakai -->
<!-- Either use a tag or a SHA so the version is predictable. -->
<!-- Source at https://github.com/w8tcha/CKEditor-WordCount-Plugin -->
<version>b29a29d4dc8a42732ce46720e1efc30c826e4c9</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<upstream.version>${ckeditor.wordcount.version}</upstream.version>
<upstream.version>${project.version}</upstream.version>
<upstream.url>https://github.com/w8tcha/CKEditor-WordCount-Plugin/archive/${upstream.version}</upstream.url>
<destDir>${project.build.outputDirectory}/META-INF/resources/webjars/wordcount/${upstream.version}</destDir>
<requirejs>
Expand All @@ -31,6 +35,7 @@
</requirejs>
</properties>


<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -73,7 +78,7 @@
<configuration>
<serverId>sonatype-nexus-staging</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
Expand Down
6 changes: 6 additions & 0 deletions webjars/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
<groupId>org.sakaiproject.webjars</groupId>
<artifactId>webjars</artifactId>
<packaging>pom</packaging>
<!-- You must keep these synced in master so they're picked up correctly in library -->
<!-- They're separate here so this can be released independently of the rest of Sakai -->
<properties>
<ckeditor.a11ychecker.version>1.1.0</ckeditor.a11ychecker.version>
<ckeditor.balloonpanel.version>4.6.2</ckeditor.balloonpanel.version>
</properties>
<!-- Only build these during the release -->
<profiles>
<profile>
Expand Down

0 comments on commit b7c38d2

Please sign in to comment.