You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2022/10/18 15:04:54 UTC

[syncope] branch master updated (7449bf5026 -> 27243a5faf)

This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git


    from 7449bf5026 Upgrading PostgreSQL, Nimbus JOSE JWT, Groovy and Wicket
     new 5ce11de0bf Upgrading WicketStuff
     new 27243a5faf [SYNCOPE-1701] Fixing SRA deployment on Maven central

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml     |  2 +-
 sra/pom.xml | 33 +++++++++++++++++++++++++++------
 2 files changed, 28 insertions(+), 7 deletions(-)


[syncope] 02/02: [SYNCOPE-1701] Fixing SRA deployment on Maven central

Posted by il...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 27243a5faf6311ae6b53cc661c811afeec4c7b2a
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Tue Oct 18 17:04:43 2022 +0200

    [SYNCOPE-1701] Fixing SRA deployment on Maven central
---
 sra/pom.xml | 33 +++++++++++++++++++++++++++------
 1 file changed, 27 insertions(+), 6 deletions(-)

diff --git a/sra/pom.xml b/sra/pom.xml
index 5d280b4687..e3f63741da 100644
--- a/sra/pom.xml
+++ b/sra/pom.xml
@@ -242,6 +242,15 @@ under the License.
           <include>banner.txt</include>
         </includes>
       </resource>
+
+      <resource>
+        <directory>${basedir}</directory>
+        <targetPath>META-INF</targetPath>
+        <includes>
+          <include>LICENSE</include>
+          <include>NOTICE</include>
+        </includes>
+      </resource>
     </resources>
     
     <testResources>
@@ -362,14 +371,26 @@ under the License.
       <id>apache-release</id>
 
       <build>
-        <plugins>      
+        <plugins>
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-deploy-plugin</artifactId>
-            <configuration>
-              <skip>true</skip>
-            </configuration>
-          </plugin>           
+            <artifactId>maven-source-plugin</artifactId>
+            <inherited>false</inherited>
+            <executions>
+              <execution>
+                <id>attach-sources</id>
+                <goals>
+                  <goal>jar-no-fork</goal>
+                </goals>
+                <configuration>
+                  <includes>
+                    <include>${basedir}/LICENSE</include>
+                    <include>${basedir}/NOTICE</include>
+                  </includes>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
         </plugins>
       </build>
     </profile>


[syncope] 01/02: Upgrading WicketStuff

Posted by il...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ilgrosso pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/syncope.git

commit 5ce11de0bf5e75102435131393ba23d38c29228b
Author: Francesco Chicchiriccò <il...@apache.org>
AuthorDate: Mon Oct 17 12:53:23 2022 +0200

    Upgrading WicketStuff
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c40f508afb..e6b3162d39 100644
--- a/pom.xml
+++ b/pom.xml
@@ -470,7 +470,7 @@ under the License.
     <chartjs.version>1.0.2</chartjs.version>
 
     <wicket.version>9.12.0</wicket.version>
-    <wicketstuff.version>9.11.0</wicketstuff.version>
+    <wicketstuff.version>9.12.0</wicketstuff.version>
     <wicket-jqueryui.version>9.11.0</wicket-jqueryui.version>
     <wicket-bootstrap.version>5.0.6</wicket-bootstrap.version>
     <wicket-spring-boot.version>3.1.6</wicket-spring-boot.version>