|
| 1 | +<?xml version="1.0"?> |
| 2 | +<project |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 4 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 5 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 6 | + <modelVersion>4.0.0</modelVersion> |
| 7 | + <groupId>rubygems</groupId> |
| 8 | + <artifactId>rack-datamapper</artifactId> |
| 9 | + <version>0.3.0</version> |
| 10 | + <packaging>gem</packaging> |
| 11 | + <name><![CDATA[this collection of plugins helps to add datamapper functionality to Rack]]></name> |
| 12 | + <description><![CDATA[this collection of plugins helps to add datamapper functionality to Rack. there is a IdentityMaps plugin which wrappes the request and with it all database actions are using that identity map. the transaction related plugin TransactionBoundaries and RestfulTransactions wrappes the request into a transaction. for using datamapper to store session data there is the DatamapperStore.]]></description> |
| 13 | + <url>http://github.com/mkristian/rack_datamapper</url> |
| 14 | + <dependencies> |
| 15 | + <dependency> |
| 16 | + <groupId>rubygems</groupId> |
| 17 | + <artifactId>dm-core</artifactId> |
| 18 | + <version>[1.0.0,1.0.99999.99999)</version> |
| 19 | + <type>gem</type> |
| 20 | + <scope>compile</scope> |
| 21 | + </dependency> |
| 22 | + <dependency> |
| 23 | + <groupId>rubygems</groupId> |
| 24 | + <artifactId>rack</artifactId> |
| 25 | + <version>[1.0.0,1.99999.99999)</version> |
| 26 | + <type>gem</type> |
| 27 | + <scope>compile</scope> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>rubygems</groupId> |
| 31 | + <artifactId>dm-migrations</artifactId> |
| 32 | + <version>[1.0.0,1.0.99999.99999)</version> |
| 33 | + <type>gem</type> |
| 34 | + <scope>test</scope> |
| 35 | + </dependency> |
| 36 | + <dependency> |
| 37 | + <groupId>rubygems</groupId> |
| 38 | + <artifactId>dm-transactions</artifactId> |
| 39 | + <version>[1.0.0,1.0.99999.99999)</version> |
| 40 | + <type>gem</type> |
| 41 | + <scope>test</scope> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>rubygems</groupId> |
| 45 | + <artifactId>dm-sqlite-adapter</artifactId> |
| 46 | + <version>[1.0.0,1.0.99999.99999)</version> |
| 47 | + <type>gem</type> |
| 48 | + <scope>test</scope> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>rubygems</groupId> |
| 52 | + <artifactId>rspec</artifactId> |
| 53 | + <version>[1.3.0,1.3.99999.99999)</version> |
| 54 | + <type>gem</type> |
| 55 | + <scope>test</scope> |
| 56 | + </dependency> |
| 57 | + </dependencies> |
| 58 | + <repositories> |
| 59 | + <repository> |
| 60 | + <id>rubygems</id> |
| 61 | + <url>http://gems.saumya.de/releases</url> |
| 62 | + </repository> |
| 63 | + </repositories> |
| 64 | + <properties> |
| 65 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 66 | + <jruby.plugins.version>0.12.1-SNAPSHOT</jruby.plugins.version> |
| 67 | + </properties> |
| 68 | + <build> |
| 69 | + <plugins> |
| 70 | + <plugin> |
| 71 | + <groupId>de.saumya.mojo</groupId> |
| 72 | + <artifactId>rspec-maven-plugin</artifactId> |
| 73 | + <version>${jruby.plugins.version}</version> |
| 74 | + </plugin> |
| 75 | + <plugin> |
| 76 | + <groupId>de.saumya.mojo</groupId> |
| 77 | + <artifactId>gem-maven-plugin</artifactId> |
| 78 | + <version>${jruby.plugins.version}</version> |
| 79 | + <extensions>true</extensions> |
| 80 | + </plugin> |
| 81 | + <plugin> |
| 82 | + <artifactId>maven-compiler-plugin</artifactId> |
| 83 | + <version>2.0.2</version> |
| 84 | + <configuration> |
| 85 | + <source>1.5</source> |
| 86 | + <target>1.5</target> |
| 87 | + </configuration> |
| 88 | + </plugin> |
| 89 | + </plugins> |
| 90 | + </build> |
| 91 | +</project> |
0 commit comments