Skip to content

Commit

Permalink
Upgrading versions (GEN3 stabilization)
Browse files Browse the repository at this point in the history
  • Loading branch information
karsten-klein committed Feb 2, 2024
1 parent b930614 commit ebab815
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 42 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
</scm>

<properties>
<ae.core.version>0.102.0</ae.core.version>
<ae.core.version>0.103.0</ae.core.version>
<ae.artifact.analysis.version>0.92.0</ae.artifact.analysis.version>
<ae.dita.version>0.29.0</ae.dita.version>
<ae.artifact.analysis.version>0.91.0</ae.artifact.analysis.version>

<artifact.inventory.validation>false</artifact.inventory.validation>
<artifact.annex.validation>false</artifact.annex.validation>
Expand Down
55 changes: 16 additions & 39 deletions scanners/example-scanner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

<properties>
<source.dir>${project.basedir}/../../extractors/dependency-extractors/ae-dependency-extractor/target/scan</source.dir>
<ae.universe.version>1.4.0</ae.universe.version>
</properties>

<build>
Expand All @@ -38,32 +39,6 @@
<pluginManagement>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-metaeffekt-tmd</id>
<goals>
<goal>unpack</goal>
</goals>
<phase>validate</phase>
<configuration>
<outputDirectory>${project.basedir}/.analysis</outputDirectory>
<includes>**/*.obj</includes>
<artifactItems>
<artifactItem>
<groupId>com.metaeffekt.artifact.analysis</groupId>
<artifactId>ae-term-metadata</artifactId>
<version>${ae.artifact.analysis.version}</version>
</artifactItem>
</artifactItems>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.metaeffekt.core</groupId>
<artifactId>ae-inventory-maven-plugin</artifactId>
Expand Down Expand Up @@ -98,6 +73,7 @@
<scanDirectory>${project.build.directory}/scan</scanDirectory>

<enableImplicitUnpack>false</enableImplicitUnpack>
<enableComponentPatternDetection>true</enableComponentPatternDetection>

<failOnError>false</failOnError>
<failOnBanned>false</failOnBanned>
Expand All @@ -120,7 +96,11 @@
<sourceInventoryDir>${project.basedir}/src/analysis</sourceInventoryDir>
<sourceInventoryIncludes>component-patterns.xls</sourceInventoryIncludes>

<targetInventoryDir>${project.build.directory}/classes/inventory</targetInventoryDir>
<scanIncludes>**/*</scanIncludes>
<scanExcludes>-none-</scanExcludes>


<targetInventoryDir>${project.build.directory}/inventory</targetInventoryDir>
</configuration>
</execution>
</executions>
Expand Down Expand Up @@ -159,19 +139,16 @@
</executions>
<configuration>
<id>${project.artifactId}</id>
<base64EncodedKey>${tmd.key}</base64EncodedKey>
<base64EncodedIv>${tmd.iv}</base64EncodedIv>
<scanBaseDir>${project.build.directory}/scan</scanBaseDir>
<targetInventoryDir>${project.build.directory}/classes/inventory</targetInventoryDir>

<scanControlPropertiesFile>${project.basedir}/src/analysis/scan-control.properties</scanControlPropertiesFile>

<tmdGroupId>com.metaeffekt.universe</tmdGroupId>
<tmdArtifactId>ae-metaeffekt-universe</tmdArtifactId>
<tmdVersion>${ae.universe.version}</tmdVersion>

<userPassword>kCnWlgrVBsiSkxTWHMJLSWwy</userPassword>
<userKeysFile>/Volumes/TransferUSB/tmd-keys/dataport-re32/consumer/fc95a2d7-0a2d-435b-bf63-92d8e66d2a22.consumer.keys</userKeysFile>
</configuration>
<dependencies>
<!-- FIXME: for some reason the maven dependency resolution is not resolving the correct version -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ analyze.scan.license.enabled=true
analyze.scan.segmentation.enabled=true

# these scanning features require scancode; currently disabled
analyze.scan.scancode.enabled=true
analyze.scan.scancode.enabled=false
analyze.scan.copyright.segmentation.enabled=true

# control overwrites; false means that scans are not overwritten and reused to boost performance of the scan
Expand Down

0 comments on commit ebab815

Please sign in to comment.