Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/ci-publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ if [[ -n "${SONATYPE_BEARER:-}" ]]; then
SONATYPE_OPTS="${SONATYPE_OPTS} --snapshot"
fi
./.github/scripts/sonatype-upload.sh ${SONATYPE_OPTS} dist/bundles
fi
fi
2 changes: 1 addition & 1 deletion .github/scripts/codeql-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -ev
./mvnw --version
./gradlew --no-daemon -Dmaven.repo.local=dist/m2 --continue testClasses :dist:jarDependencies "$@"
./gradlew --no-daemon -Dmaven.repo.local=dist/m2 --continue :gradle-plugins:testClasses
./mvnw -Dmaven.repo.local=dist/m2 --batch-mode --no-transfer-progress test-compile
./mvnw -Dmaven.repo.local=dist/m2 --batch-mode --no-transfer-progress test-compile
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ Archive
target/
*.code-workspace
bndtools.test/workspace/
_log/
.polyglot*
.tycho*
8 changes: 8 additions & 0 deletions .mvn/extensions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<extensions>
<extension>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-build</artifactId>
<version>${tycho-version}</version>
</extension>
</extensions>
1 change: 1 addition & 0 deletions .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-Dtycho-version=5.0.2
36 changes: 36 additions & 0 deletions cnf/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>biz.aQute.bnd</groupId>
<artifactId>configurator</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<!-- properties can be defined -->
</properties>
Comment thread
chrisrueger marked this conversation as resolved.
<build>
<pluginManagement>
<!-- add your general plugin configuration here or customize the defaults -->
</pluginManagement>
</build>
<profiles>
<profile>
<id>file-activation-example</id>
<activation>
<file>
<exists>someFile</exists>
</file>
</activation>
<build>
<plugins>
<!-- add additional plugin configuration here that shoul be activated by a given file type -->
</plugins>
</build>
</profile>
</profiles>
<modules>
<module>../maven-plugins</module>
</modules>
</project>
23 changes: 0 additions & 23 deletions pom.xml

This file was deleted.

Loading