You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
EmbeddingStore's IT in community repo may extend EmbeddingStoreIT, EmbeddingStoreWithFilteringIT, etc. Main repo should expose test source for better debug functionality.
Describe the solution you'd like
Adding plugin in langchain4j-core and langchain4j-spring-boot-tests as following:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
<!-- For getting test source -->
<goal>test-jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
Describe alternatives you've considered
No
Additional context
No
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
EmbeddingStore's IT in community repo may extend
EmbeddingStoreIT
,EmbeddingStoreWithFilteringIT
, etc. Main repo should expose test source for better debug functionality.Describe the solution you'd like
Adding plugin in
langchain4j-core
andlangchain4j-spring-boot-tests
as following:Describe alternatives you've considered
No
Additional context
No
The text was updated successfully, but these errors were encountered: