Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Commit

Permalink
#24 - added home meta
Browse files Browse the repository at this point in the history
  • Loading branch information
Graur committed May 31, 2023
1 parent 586781c commit ebf9c89
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 5 deletions.
34 changes: 29 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ SOFTWARE.
<version>0.0.1</version>
<packaging>jar</packaging>
<name>eo-net</name>
<properties>
<stack-size>256M</stack-size>
</properties>
<description>Sockets for EO Programming Language</description>
<organization>
<name>EO</name>
Expand Down Expand Up @@ -91,7 +94,7 @@ SOFTWARE.
<dependency>
<groupId>org.eolang</groupId>
<artifactId>eo-runtime</artifactId>
<version>0.29.4</version>
<version>0.29.5</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand All @@ -100,17 +103,30 @@ SOFTWARE.
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eolang</groupId>
<artifactId>eo-runtime</artifactId>
<version>0.29.4</version>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<version>5.9.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration combine.self="override"/>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Xss${stack-size}</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.eolang</groupId>
<artifactId>eo-maven-plugin</artifactId>
<version>0.29.4</version>
<version>0.29.5</version>
<executions>
<execution>
<id>compile</id>
Expand All @@ -122,6 +138,11 @@ SOFTWARE.
<goal>unspile</goal>
<goal>copy</goal>
</goals>
<configuration>
<keepBinaries>
<glob>EOorg/EOeolang/EOnet/**</glob>
</keepBinaries>
</configuration>
</execution>
<execution>
<id>test-compile</id>
Expand All @@ -132,6 +153,7 @@ SOFTWARE.
<goal>transpile</goal>
</goals>
<configuration>
<scope>test</scope>
<sourcesDir>${project.basedir}/src/test/eo</sourcesDir>
<targetDir>${project.build.directory}/eo-test</targetDir>
<addSourcesRoot>false</addSourcesRoot>
Expand All @@ -151,9 +173,11 @@ SOFTWARE.
<plugin>
<groupId>com.qulice</groupId>
<artifactId>qulice-maven-plugin</artifactId>
<version>0.22.0</version>
<configuration>
<excludes combine.children="append">
<exclude>pmd:.*</exclude>
<exclude>duplicatefinder:.*</exclude>
</excludes>
</configuration>
</plugin>
Expand Down
1 change: 1 addition & 0 deletions src/main/eo/org/eolang/net/socket.eo
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

+home https://github.com/objectionary/eo-net
+package org.eolang.net
+rt jvm org.eolang.net:0.0.0
+version 0.0.0
Expand Down
1 change: 1 addition & 0 deletions src/test/eo/org/eolang/net/socket-tests.eo
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
+alias org.eolang.net.socket
+home https://github.com/objectionary/eo-net
+package org.eolang.net
+tests

Expand Down

0 comments on commit ebf9c89

Please sign in to comment.