You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2018/01/16 09:55:37 UTC

[sling-ide-tooling] branch master updated (73c1a74 -> 22fe3f6)

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

rombert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git.


    from 73c1a74  SLING-6462 - Filter Isolated jcr:content nodes (by includes) are not deployed
     new bc89d46  SLING-6585 - Switch to the ASF code signing service
     new 22fe3f6  Update .gitignore patterns

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:
 .gitignore       |  2 +-
 p2update/pom.xml | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 89 insertions(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@sling.apache.org" <co...@sling.apache.org>'].

[sling-ide-tooling] 01/02: SLING-6585 - Switch to the ASF code signing service

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

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git

commit bc89d46cce9751771ebca204793b58b6a7bba7e3
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Tue Jan 16 11:54:13 2018 +0200

    SLING-6585 - Switch to the ASF code signing service
    
    Add the 'codesign' profile, with the codesign plugin commented out for
    now.
---
 p2update/pom.xml | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 88 insertions(+)

diff --git a/p2update/pom.xml b/p2update/pom.xml
index caeeda9..be5f24d 100644
--- a/p2update/pom.xml
+++ b/p2update/pom.xml
@@ -76,4 +76,92 @@
       </plugin>
     </plugins>
   </build>
+    <profiles>
+        <profile>
+            <id>codesign</id>
+            <build>
+                <plugins>
+                    <!-- 
+                    This plugin is not yet released. To use this code signing, install the 
+                    pluging locally and then run with the 'codesign' profile. See the Sling IDE
+                    tooling docs for more instructions 
+                    <plugin>
+                        <groupId>org.apache.sling</groupId>
+                        <artifactId>codesign-maven-plugin</artifactId>
+                        <version>1.0.0-SNAPSHOT</version>
+                        <executions>
+                            <execution>
+                                <id>codesign</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>sign</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                        <configuration>
+                            <applicationName>Apache Sling IDE Tooling for Eclipse</applicationName>
+                            <applicationVersion>${qualifiedVersion}</applicationVersion>
+                            <includeProjectArtifact>false</includeProjectArtifact>
+                            <artifactSets>
+                                <artifactSet>
+                                    <directory>target/repository/features</directory>
+                                    <include>org.apache.sling.*.jar</include>
+                                </artifactSet>
+                                <artifactSet>
+                                    <directory>target/repository/plugins</directory>
+                                    <include>org.apache.sling.*.jar</include>
+                                </artifactSet>
+                            </artifactSets>
+                            <signingService>Java TEST Signing Sha256</signingService>
+                        </configuration>
+                    </plugin>
+                     -->
+                    <plugin>
+                        <groupId>org.eclipse.tycho.extras</groupId>
+                        <artifactId>tycho-p2-extras-plugin</artifactId>
+                        <version>${tycho.version}</version>
+                        <configuration>
+                            <source>
+                                <repository>
+                                    <url>${project.build.directory}/repository</url>
+                                </repository>
+                            </source>
+                            <destination>${project.build.directory}/repository-signed</destination>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <id>create-signed-repository</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>mirror</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-resources-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>copy-index.html-to-signed-repository</id>
+                                <goals>
+                                    <goal>copy-resources</goal>
+                                </goals>
+                                <phase>package</phase>
+                            </execution>
+                        </executions>
+                        <configuration>
+                            <outputDirectory>${project.build.directory}/repository-signed</outputDirectory>
+                            <resources>
+                                <resource>
+                                    <directory>${project.build.directory}/repository</directory>
+                                    <include>index.html</include>
+                                </resource>
+                            </resources>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 </project>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-ide-tooling] 02/02: Update .gitignore patterns

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

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git

commit 22fe3f69739d831305ee7881dcd71b6c3aca8f84
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Tue Jan 16 11:55:13 2018 +0200

    Update .gitignore patterns
---
 .gitignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 5b783ed..7fa4d65 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
-/target
+target
 .idea
 .classpath
 .metadata

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.