Skip to content

Commit 8594ed2

Browse files
committed
chore: improve updatesite config
1 parent bb7c3b1 commit 8594ed2

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

updatesite/category.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<site>
33
<feature id="de.sebthom.eclipse.extra_syntax_highlighting.feature" />
4+
<repository-reference location="https://download.eclipse.org/tm4e/releases/0.6.2/" name="TM4E 0.6.2" enabled="true" />
5+
<repository-reference location="https://download.eclipse.org/tm4e/releases/0.15.1/" name="TM4E 0.15.1" enabled="true" />
6+
<repository-reference location="https://download.eclipse.org/tm4e/releases/latest/" name="TM4E Latest Release" enabled="true" />
47
</site>

updatesite/pom.xml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<?xml version="1.0"?>
1+
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
SPDX-FileCopyrightText: © Sebastian Thomschke and contributors.
3+
SPDX-FileCopyrightText: © Sebastian Thomschke and contributors
44
SPDX-FileContributor: Sebastian Thomschke
55
SPDX-License-Identifier: EPL-2.0
66
SPDX-ArtifactOfProjectHomePage: https://github.com/sebthom/extra-syntax-highlighting-eclipse-plugin
@@ -23,20 +23,21 @@
2323
<packaging>eclipse-repository</packaging>
2424

2525
<properties>
26-
<jarsigner.keystore.alias>sebthom.github.io</jarsigner.keystore.alias>
2726
<!-- using a TimeStamp Authority allows signed jars to be used even after expiration of the signing certificates
2827
which is esp. important when short living certs (like letsencrypt) are used -->
2928
<jarsigner.timestamp.url>http://timestamp.digicert.com?alg=sha256</jarsigner.timestamp.url>
3029
<!-- properties to be specified via the CLI: -->
31-
<!-- * jarsigner.keystore.path -->
32-
<!-- * jarsigner.keystore.password -->
30+
<!-- * -Djarsigner.alias= -->
31+
<!-- * -Djarsigner.keystore= -->
32+
<!-- * -Djarsigner.keypass= -->
33+
<!-- * -Djarsigner.storepass= -->
3334
</properties>
3435

3536
<profiles>
3637
<profile>
3738
<activation>
3839
<property>
39-
<name>jarsigner.keystore.path</name>
40+
<name>jarsigner.keystore</name>
4041
</property>
4142
</activation>
4243
<build>
@@ -70,11 +71,6 @@
7071
</execution>
7172
</executions>
7273
<configuration>
73-
<alias>${jarsigner.keystore.alias}</alias>
74-
<keystore>${jarsigner.keystore.path}</keystore>
75-
<storepass>${jarsigner.keystore.password}</storepass>
76-
<keypass>${jarsigner.keystore.password}</keypass>
77-
7874
<archiveDirectory>${project.build.directory}/repository/</archiveDirectory>
7975
<includes>
8076
<include>features/${project.groupId}*</include>

0 commit comments

Comments
 (0)