MVN

com.google.code.maven-play-plugin.com.sienaproject.siena : siena

Maven & Gradle

Mar 12, 2013
1 usages
81 stars

siena · Siena is a persistence abstraction layer made in Java with various implementations: * siena-jdbc: persists objects into a relational database using JDBC (status: deeply tested) * siena-gae: persists objects into the Google App Engine's datastore using its low-level API (status: beta) * siena-sdb: persists objects using Amazon's SimpleDB (very experimental) * siena-remote: persists objects remotely using a remote web application that uses siena. (planning) Siena is also: * Intrusive. You make a class persistent by extending a certain class. Relationships are defined also in an intrusive way. * Simple. Simplicity is the most important thing. * Limited. Due to the simplicity there are several unsupported things such as JOINs. * Extensible. There are two interfaces you can implement on your own way.

<dependency>
    <groupId>com.google.code.maven-play-plugin.com.sienaproject.siena</groupId>
    <artifactId>siena</artifactId>
    <version>1.0.0-b6-20111107</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.google.code.maven-play-plugin.com.sienaproject.siena : siena to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.0-b6-20111107

All Versions

Choose a version of com.google.code.maven-play-plugin.com.sienaproject.siena : siena to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
siena-1.0.0-b6-20111107

How to add a dependency to Maven

Add the following com.google.code.maven-play-plugin.com.sienaproject.siena : siena maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.google.code.maven-play-plugin.com.sienaproject.siena</groupId>
    <artifactId>siena</artifactId>
    <version>1.0.0-b6-20111107</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.google.code.maven-play-plugin.com.sienaproject.siena : siena gradle dependency to your build.gradle file:

implementation 'com.google.code.maven-play-plugin.com.sienaproject.siena:siena:1.0.0-b6-20111107'

Gradle Kotlin DSL: Add the following com.google.code.maven-play-plugin.com.sienaproject.siena : siena gradle kotlin dependency to your build.gradle.kts file:

implementation("com.google.code.maven-play-plugin.com.sienaproject.siena:siena:1.0.0-b6-20111107")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.google.code.maven-play-plugin.com.sienaproject.siena : siena sbt scala dependency to your build.sbt file:

libraryDependencies += "com.google.code.maven-play-plugin.com.sienaproject.siena" % "siena" % "1.0.0-b6-20111107"

Advertisement