Download sodium-1.0.0.jar file

Introduction

You can download sodium-1.0.0.jar in this page.

License

BSD3

Type List

sodium-1.0.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/nz.sodium/sodium/pom.properties
META-INF/maven/nz.sodium/sodium/pom.xml
nz.sodium.Cell.class
nz.sodium.CellLoop.class
nz.sodium.CellSink.class
nz.sodium.CoalesceHandler.class
nz.sodium.Handler.class
nz.sodium.Lambda0.class
nz.sodium.Lambda1.class
nz.sodium.Lambda2.class
nz.sodium.Lambda3.class
nz.sodium.Lambda4.class
nz.sodium.Lambda5.class
nz.sodium.Lambda6.class
nz.sodium.Lazy.class
nz.sodium.LazyCell.class
nz.sodium.Listener.class
nz.sodium.Node.class
nz.sodium.Operational.class
nz.sodium.Stream.class
nz.sodium.StreamLoop.class
nz.sodium.StreamSink.class
nz.sodium.StreamWithSend.class
nz.sodium.Transaction.class
nz.sodium.TransactionHandler.class
nz.sodium.Tuple2.class
nz.sodium.Unit.class
nz.sodium.time.MillisecondsTimerSystem.class
nz.sodium.time.MillisecondsTimerSystemImpl.class
nz.sodium.time.SecondsTimerSystem.class
nz.sodium.time.SecondsTimerSystemImpl.class
nz.sodium.time.Timer.class
nz.sodium.time.TimerSystem.class
nz.sodium.time.TimerSystemImpl.class

Pom

sodium-1.0.0.pom file content.

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>nz.sodium</groupId>
  <artifactId>sodium</artifactId>
  <version>1.0.0</version>  
  <packaging>jar</packaging>
  <name>Sodium FRP system</name>
  <description>A Functional Reactive Programming (FRP) system for Java</description>
  <url>http://github.com/SodiumFRP/sodium</url>
  <licenses>
    <license>
      <name>BSD3</name>
      <url>https://github.com/SodiumFRP/sodium/blob/master/COPYING</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Stephen Blackheath</name>
      <email>sodium3.stephen@blacksapphire.com</email>
      <organization>Sodium FRP system</organization>
      <organizationUrl>http://sodium.nz</organizationUrl>
    </developer>
  </developers>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.2.1</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar-no-fork</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.10.3</version>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <show>public</show>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.5</version>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <version>1.6.3</version>
        <extensions>true</extensions>
        <configuration>
           <serverId>ossrh</serverId>
           <nexusUrl>https://oss.sonatype.org/</nexusUrl>
           <autoReleaseAfterClose>true</autoReleaseAfterClose>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <scm>
    <connection>scm:git:git@github.com:SodiumFRP/sodium.git</connection>
    <developerConnection>scm:git:git@github.com:SodiumFRP/sodium.git</developerConnection>
    <url>git@github.com:SodiumFRP/sodium.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <distributionManagement>
    <snapshotRepository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
    <repository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
    </repository>
  </distributionManagement>
</project>

POM Entry

<dependency>
   <groupId>nz.sodium</groupId>
   <artifactId>sodium</artifactId>
   <version>1.0.0</version>
</dependency>

Download

If you think the following sodium-1.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download sodium-1.0.0.jar file




PreviousNext

Related