This is an automated email from the ASF dual-hosted git repository.
sblackmon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/streams.git
The following commit(s) were added to refs/heads/master by this push:
new 3acb114910 fix: follow-on (#554)
3acb114910 is described below
commit 3acb114910675bf85e11cdfcab2339d30f864133
Author: Steve Blackmon <[email protected]>
AuthorDate: Fri Feb 9 09:52:29 2024 -0600
fix: follow-on (#554)
---
streams-components/streams-converters/pom.xml | 5 +++++
streams-runtimes/streams-runtime-local/pom.xml | 6 +++++-
streams-verbs/pom.xml | 29 ++++++++++++--------------
3 files changed, 23 insertions(+), 17 deletions(-)
diff --git a/streams-components/streams-converters/pom.xml
b/streams-components/streams-converters/pom.xml
index 1a768da864..babb3a5a7b 100644
--- a/streams-components/streams-converters/pom.xml
+++ b/streams-components/streams-converters/pom.xml
@@ -43,6 +43,11 @@
<artifactId>streams-pojo</artifactId>
<version>${project.version}</version>
</dependency>
+ <dependency>
+ <groupId>org.apache.streams</groupId>
+ <artifactId>streams-schema-activitystreams</artifactId>
+ <version>${project.version}</version>
+ </dependency>
<dependency>
<groupId>org.apache.streams</groupId>
<artifactId>streams-pojo-extensions</artifactId>
diff --git a/streams-runtimes/streams-runtime-local/pom.xml
b/streams-runtimes/streams-runtime-local/pom.xml
index d15a60b1df..2a7d25521d 100644
--- a/streams-runtimes/streams-runtime-local/pom.xml
+++ b/streams-runtimes/streams-runtime-local/pom.xml
@@ -57,7 +57,11 @@
<artifactId>streams-pojo</artifactId>
<version>${project.version}</version>
</dependency>
-
+ <dependency>
+ <groupId>org.apache.streams</groupId>
+ <artifactId>streams-schema-activitystreams</artifactId>
+ <version>${project.version}</version>
+ </dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
diff --git a/streams-verbs/pom.xml b/streams-verbs/pom.xml
index f73afbcf7c..f770081ab6 100644
--- a/streams-verbs/pom.xml
+++ b/streams-verbs/pom.xml
@@ -32,14 +32,22 @@
<dependencies>
+ <dependency>
+ <groupId>org.apache.streams</groupId>
+ <artifactId>streams-schema-activitystreams</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
<dependency>
<groupId>org.apache.streams</groupId>
<artifactId>streams-pojo</artifactId>
+ <version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.streams</groupId>
<artifactId>streams-util</artifactId>
+ <version>${project.version}</version>
</dependency>
<dependency>
@@ -141,22 +149,11 @@
</configuration>
</plugin>
<plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>add-source</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>add-source</goal>
- </goals>
- <configuration>
- <sources>
- <source>target/generated-sources/pojo</source>
- </sources>
- </configuration>
- </execution>
- </executions>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+
<generatedSourcesDirectory>${project.build.directory}/generated-sources/pojo</generatedSourcesDirectory>
+
<generatedTestSourcesDirectory>${project.build.directory}/generated-sources/pojo</generatedTestSourcesDirectory>
+ </configuration>
</plugin>
</plugins>
<pluginManagement>