Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Urisman authored and Igor Urisman committed Aug 17, 2023
1 parent 3b6f6bf commit 6560f6a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
# Variant АIM Server Standard Extension Library
### Release 0.10.0
#### Requires: Java 8 or later

[__Documentation__](https://www.getvariant.com/resources/docs/0-10/application-iteration-server/reference/#section-4) | [__Javadoc__](https://getvariant.github.io/variant-extapi-standard/)
# Variant CVM Server SPI Standard Library
### Release 1.0.0
6 changes: 3 additions & 3 deletions bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ mvn clean package

# Un-package the JAR and add the /db directory to it. /db directory contains DB related SQL and shell
# scripts that are used by tests.
jar -uf target/variant-extapi-standard-${version}.jar $(find db)
jar -uf target/variant-spi-stdlib-${version}.jar $(find db)

# Copy the new build into the server's distribution directory. Assuming the location of the variant
# local repo.
cp target/variant-extapi-standard-${version}.jar ../variant/SERVER/src/universal/ext
cp target/variant-extapi-standard-${version}.jar ../variant/SERVER/lib
cp target/variant-spi-stdlib-${version}.jar ../variant/SERVER/src/universal/ext
cp target/variant-spi-stdlib-${version}.jar ../variant/SERVER/lib
Binary file not shown.
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,24 @@

</properties>

<name>Variant Server Standard Extension</name>
<name>Variant Server Standard SPI Standard Library</name>
<packaging>jar</packaging>

<groupId>com.variant</groupId>
<artifactId>variant-extapi-standard</artifactId>
<artifactId>variant-spi-stdlib</artifactId>
<version>${variant.version}</version>

<dependencies>

<!--
Variant Extension API is bootstrapped from local JAR.
Variant SPI is bootstrapped from local JAR.
-->
<dependency>
<groupId>com.variant</groupId>
<artifactId>variant-server-extapi</artifactId>
<artifactId>variant-spi</artifactId>
<version>${variant.version}</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/variant-server-extapi-${variant.version}.jar</systemPath>
<systemPath>${project.basedir}/lib/variant-server-spi-${variant.version}.jar</systemPath>
</dependency>

<!--
Expand Down

0 comments on commit 6560f6a

Please sign in to comment.