You can download lift-mapper-1.0.jar in this page.
Apache License, Version 2.0
lift-mapper-1.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/net.liftweb/lift-mapper/pom.properties META-INF/maven/net.liftweb/lift-mapper/pom.xml net.liftweb.mapper.AscOrDesc.class net.liftweb.mapper.Ascending.class net.liftweb.mapper.BaseForeignKey.class net.liftweb.mapper.BaseIndexedField.class net.liftweb.mapper.BaseKeyedMapper.class net.liftweb.mapper.BaseLongKeyedMapper.class net.liftweb.mapper.BaseMappedField.class net.liftweb.mapper.BaseMapper.class net.liftweb.mapper.BaseMetaMapper.class net.liftweb.mapper.BaseOwnedMappedField.class net.liftweb.mapper.BoundedIndexField.class net.liftweb.mapper.By.class net.liftweb.mapper.ByList.class net.liftweb.mapper.ByRef.class net.liftweb.mapper.BySql.class net.liftweb.mapper.CRUDify.class net.liftweb.mapper.Cmp.class net.liftweb.mapper.ConnectionIdentifier.class net.liftweb.mapper.ConnectionManager.class net.liftweb.mapper.Countries.class net.liftweb.mapper.DB.class net.liftweb.mapper.DBIndexed.class net.liftweb.mapper.DefaultConnectionIdentifier.class net.liftweb.mapper.DefaultMillis.class net.liftweb.mapper.DerbyDriver.class net.liftweb.mapper.Descending.class net.liftweb.mapper.Distinct.class net.liftweb.mapper.DriverType.class net.liftweb.mapper.FieldHolder.class net.liftweb.mapper.Genders.class net.liftweb.mapper.H2Driver.class net.liftweb.mapper.HasManyThrough.class net.liftweb.mapper.IHaveValidatedThisSQL.class net.liftweb.mapper.IdPK.class net.liftweb.mapper.Ignore.class net.liftweb.mapper.In.class net.liftweb.mapper.InRaw.class net.liftweb.mapper.InThing.class net.liftweb.mapper.Index.class net.liftweb.mapper.IndexField.class net.liftweb.mapper.IndexItem.class net.liftweb.mapper.IndexedField.class net.liftweb.mapper.JsonComet.class net.liftweb.mapper.KeyObfuscator.class net.liftweb.mapper.KeyedMapper.class net.liftweb.mapper.KeyedMetaMapper.class net.liftweb.mapper.LifecycleCallbacks.class net.liftweb.mapper.Like.class net.liftweb.mapper.LongCRUDify.class net.liftweb.mapper.LongKeyedMapper.class net.liftweb.mapper.LongKeyedMetaMapper.class net.liftweb.mapper.MappedBinary.class net.liftweb.mapper.MappedBirthYear.class net.liftweb.mapper.MappedBoolean.class net.liftweb.mapper.MappedCountry.class net.liftweb.mapper.MappedDateTime.class net.liftweb.mapper.MappedDouble.class net.liftweb.mapper.MappedEmail.class net.liftweb.mapper.MappedEnum.class net.liftweb.mapper.MappedEnumList.class net.liftweb.mapper.MappedFakeClob.class net.liftweb.mapper.MappedField.class net.liftweb.mapper.MappedForeignKey.class net.liftweb.mapper.MappedGender.class net.liftweb.mapper.MappedInt.class net.liftweb.mapper.MappedIntIndex.class net.liftweb.mapper.MappedLocale.class net.liftweb.mapper.MappedLong.class net.liftweb.mapper.MappedLongForeignKey.class net.liftweb.mapper.MappedLongIndex.class net.liftweb.mapper.MappedPassword.class net.liftweb.mapper.MappedPoliteString.class net.liftweb.mapper.MappedPostalCode.class net.liftweb.mapper.MappedString.class net.liftweb.mapper.MappedStringForeignKey.class net.liftweb.mapper.MappedStringIndex.class net.liftweb.mapper.MappedText.class net.liftweb.mapper.MappedTextarea.class net.liftweb.mapper.MappedTimeZone.class net.liftweb.mapper.MappedUniqueId.class net.liftweb.mapper.Mapper.class net.liftweb.mapper.MapperRules.class net.liftweb.mapper.MaxDbDriver.class net.liftweb.mapper.MaxRows.class net.liftweb.mapper.MegaProtoUser.class net.liftweb.mapper.MetaMapper.class net.liftweb.mapper.MetaMegaProtoUser.class net.liftweb.mapper.MetaProtoExtendedSession.class net.liftweb.mapper.MetaProtoTag.class net.liftweb.mapper.MySqlDriver.class net.liftweb.mapper.NotBy.class net.liftweb.mapper.NotByRef.class net.liftweb.mapper.NotNullRef.class net.liftweb.mapper.NullRef.class net.liftweb.mapper.OprEnum.class net.liftweb.mapper.OracleDriver.class net.liftweb.mapper.OrderBy.class net.liftweb.mapper.OrderBySql.class net.liftweb.mapper.PostgreSqlDriver.class net.liftweb.mapper.PreCache.class net.liftweb.mapper.ProtoExtendedSession.class net.liftweb.mapper.ProtoTag.class net.liftweb.mapper.ProtoUser.class net.liftweb.mapper.QueryParam.class net.liftweb.mapper.Safe.class net.liftweb.mapper.Schemifier.class net.liftweb.mapper.SelectableField.class net.liftweb.mapper.SqlServerDriver.class net.liftweb.mapper.StartAt.class net.liftweb.mapper.SuperConnection.class net.liftweb.mapper.TypedField.class net.liftweb.mapper.UserIdAsString.class
lift-mapper-1.0.pom file content.
<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> <parent> <artifactId>lift</artifactId> <groupId>net.liftweb</groupId> <version>1.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>lift-mapper</artifactId> <packaging>jar</packaging> <name>Lift Mapper</name> <description>Lift's old-style OR Mapping</description> <dependencies> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> </dependency> <dependency> <!-- need net.liftweb.util net.liftweb.http--> <groupId>${project.groupId}</groupId> <artifactId>lift-webkit</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.6</version> <optional>true</optional> </dependency> <dependency> <groupId>org.specs</groupId> <artifactId>specs</artifactId> <version>1.4.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.scalacheck</groupId> <artifactId>scalacheck</artifactId> <version>1.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest</artifactId> <version>0.9.4</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.5</version> <scope>test</scope> </dependency> <dependency> <groupId>net.sourceforge.jwebunit</groupId> <artifactId>jwebunit-htmlunit-plugin</artifactId> <version>1.4.1</version> <scope>test</scope> <exclusions> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty</artifactId> <version>[6.1.6,)</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <version>10.4.2.0</version> <optional>true</optional> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.0.79</version> <optional>true</optional> </dependency> <dependency> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId> <version>8.3-603.jdbc3</version> <optional>true</optional> </dependency> <dependency> <groupId>net.sourceforge.jtds</groupId> <artifactId>jtds</artifactId> <version>1.2.2</version> <optional>true</optional> </dependency> <!-- <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> <scope>runtime</scope> <version>11.1.0.7.0</version> <optional>true</optional> </dependency> --> <!-- Oracle JDBC for jdk 1.5 and earlier <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc14</artifactId> <scope>runtime</scope> <version>10.2.0.3.0</version> <optional>true</optional> </dependency> --> <!-- <dependency> <groupId>com.sap</groupId> <artifactId>sapdbc</artifactId> <scope>runtime</scope> <version>7.6.0.5</version> <optional>true</optional> </dependency> --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>
<dependency> <groupId>net.liftweb</groupId> <artifactId>lift-mapper</artifactId> <version>1.0</version> </dependency>
If you think the following lift-mapper-1.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download lift-mapper-1.0.jar file