All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download JAR files tagged by also with all dependencies

Search JAR files by class name

synapse-slick-lifted_2.11 from group ru.primetalk (version 1.4.0)

SynapseGrid is a framework for constructing reactive real-time immutable data flow systems. -core contains everything to run a single-threaded system, -akka contains everything to run systems over Akka actors, -slf4j - enables logging, -concurrent - running systems directly over ExecutorContext without the need for Akka, -examples - a few test systems. Also there are -frames - a framework for type construction with meta information (see relations.scala). -typed-expressions - a framework for defining parsers and generators for natural language. The current version is 1.4.0

Group: ru.primetalk Artifact: synapse-slick-lifted_2.11
Show documentation Show source 
 

0 downloads
Artifact synapse-slick-lifted_2.11
Group ru.primetalk
Version 1.4.0
Last update 01. April 2015
Organization not specified
URL https://github.com/Primetalk/SynapseGrid
License BSD Software License, 2-clause version
Dependencies amount 5
Dependencies slick_2.11, scala-library, slick-pg_2.11, synapse-frames_2.11, slf4j-api,
There are maybe transitive dependencies!

synapse-frames_2.11 from group ru.primetalk (version 1.4.0)

SynapseGrid is a framework for constructing reactive real-time immutable data flow systems. -core contains everything to run a single-threaded system, -akka contains everything to run systems over Akka actors, -slf4j - enables logging, -concurrent - running systems directly over ExecutorContext without the need for Akka, -examples - a few test systems. Also there are -frames - a framework for type construction with meta information (see relations.scala). -typed-expressions - a framework for defining parsers and generators for natural language. The current version is 1.4.0

Group: ru.primetalk Artifact: synapse-frames_2.11
Show all versions Show documentation Show source 
 

4 downloads
Artifact synapse-frames_2.11
Group ru.primetalk
Version 1.4.0
Last update 01. April 2015
Organization not specified
URL https://github.com/Primetalk/SynapseGrid
License BSD Software License, 2-clause version
Dependencies amount 2
Dependencies scala-reflect, scala-library,
There are maybe transitive dependencies!

synapse-typed-expressions_2.10 from group ru.primetalk (version 1.4.0)

SynapseGrid is a framework for constructing reactive real-time immutable data flow systems. -core contains everything to run a single-threaded system, -akka contains everything to run systems over Akka actors, -slf4j - enables logging, -concurrent - running systems directly over ExecutorContext without the need for Akka, -examples - a few test systems. Also there are -frames - a framework for type construction with meta information (see relations.scala). -typed-expressions - a framework for defining parsers and generators for natural language. The current version is 1.4.0

Group: ru.primetalk Artifact: synapse-typed-expressions_2.10
Show all versions Show documentation Show source 
 

0 downloads
Artifact synapse-typed-expressions_2.10
Group ru.primetalk
Version 1.4.0
Last update 01. April 2015
Organization not specified
URL https://github.com/Primetalk/SynapseGrid
License BSD Software License, 2-clause version
Dependencies amount 2
Dependencies russian-lang_2.10, scala-library,
There are maybe transitive dependencies!

synapse-slick-lifted_2.10 from group ru.primetalk (version 1.4.0)

SynapseGrid is a framework for constructing reactive real-time immutable data flow systems. -core contains everything to run a single-threaded system, -akka contains everything to run systems over Akka actors, -slf4j - enables logging, -concurrent - running systems directly over ExecutorContext without the need for Akka, -examples - a few test systems. Also there are -frames - a framework for type construction with meta information (see relations.scala). -typed-expressions - a framework for defining parsers and generators for natural language. The current version is 1.4.0

Group: ru.primetalk Artifact: synapse-slick-lifted_2.10
Show documentation Show source 
 

0 downloads
Artifact synapse-slick-lifted_2.10
Group ru.primetalk
Version 1.4.0
Last update 01. April 2015
Organization not specified
URL https://github.com/Primetalk/SynapseGrid
License BSD Software License, 2-clause version
Dependencies amount 5
Dependencies slick-pg_2.10, synapse-frames_2.10, slf4j-api, scala-library, slick_2.10,
There are maybe transitive dependencies!

synapse-frames_2.10 from group ru.primetalk (version 1.4.0)

SynapseGrid is a framework for constructing reactive real-time immutable data flow systems. -core contains everything to run a single-threaded system, -akka contains everything to run systems over Akka actors, -slf4j - enables logging, -concurrent - running systems directly over ExecutorContext without the need for Akka, -examples - a few test systems. Also there are -frames - a framework for type construction with meta information (see relations.scala). -typed-expressions - a framework for defining parsers and generators for natural language. The current version is 1.4.0

Group: ru.primetalk Artifact: synapse-frames_2.10
Show all versions Show documentation Show source 
 

0 downloads
Artifact synapse-frames_2.10
Group ru.primetalk
Version 1.4.0
Last update 01. April 2015
Organization not specified
URL https://github.com/Primetalk/SynapseGrid
License BSD Software License, 2-clause version
Dependencies amount 2
Dependencies scala-reflect, scala-library,
There are maybe transitive dependencies!

russian-lang_2.10 from group ru.primetalk (version 1.4.0)

SynapseGrid is a framework for constructing reactive real-time immutable data flow systems. -core contains everything to run a single-threaded system, -akka contains everything to run systems over Akka actors, -slf4j - enables logging, -concurrent - running systems directly over ExecutorContext without the need for Akka, -examples - a few test systems. Also there are -frames - a framework for type construction with meta information (see relations.scala). -typed-expressions - a framework for defining parsers and generators for natural language. The current version is 1.4.0

Group: ru.primetalk Artifact: russian-lang_2.10
Show all versions Show documentation Show source 
 

1 downloads
Artifact russian-lang_2.10
Group ru.primetalk
Version 1.4.0
Last update 01. April 2015
Organization not specified
URL https://github.com/Primetalk/SynapseGrid
License BSD Software License, 2-clause version
Dependencies amount 1
Dependencies scala-library,
There are maybe transitive dependencies!

jdbctemplatetool from group org.crazycake (version 1.0.4-RELEASE)

Spring JdbcTemplate did very convient and useful, but it also has some disadvantages or in another word “inconvenient”. For example, you can’t just pass an object and tell JdbcTemplate to turn it into a sql and save to database just like hibernate does. Alright, you may say “JdbcTemplate doesn’t need you to write hbm.xml , so it’s understandable”. But is it true that this thing is impossible to achieve? And also you know JdbcTemplate can auto turn the result of a query to a list of persistent object a.k.a PO, but when you want to do this you will meet a problem: “How to ?”.Because you can’t find any function of JdbcTemplate to pass a sql and a PO class as we expected. After you google for it, you’ve been told you can create a BeanPropertyRowMapper to deal with this. But isn’t it could be more easier? Based on those questions I create JdbcTemplateTool which can provide these features.

Group: org.crazycake Artifact: jdbctemplatetool
Show documentation Show source 
 

0 downloads
Artifact jdbctemplatetool
Group org.crazycake
Version 1.0.4-RELEASE
Last update 24. September 2014
Organization not specified
URL https://github.com/alexxiyang/jdbctemplatetool
License The Apache Software License, Version 2.0
Dependencies amount 6
Dependencies spring-orm, persistence-api, slf4j-api, slf4j-log4j12, spring-core, camel-name-utils,
There are maybe transitive dependencies!

keystone-plugin from group org.intelligents-ia (version 3.3)

Group: org.intelligents-ia Artifact: keystone-plugin
Show documentation Show source 
 

0 downloads
Artifact keystone-plugin
Group org.intelligents-ia
Version 3.3
Last update 19. August 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 5
Dependencies keystone-boot, maven-plugin-api, maven-archiver, maven-project, maven-dependency-tree,
There are maybe transitive dependencies!

keystone-boot from group org.intelligents-ia (version 3.3)

Group: org.intelligents-ia Artifact: keystone-boot
Show documentation Show source 
 

0 downloads
Artifact keystone-boot
Group org.intelligents-ia
Version 3.3
Last update 19. August 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

keystone from group org.intelligents-ia (version 3.3)

Keystone project is a bootstrap that loads your application and its dependencies from a single archive. With his maven plugin and few line of configuration, your application will be available with all his dependencies in a single archive. The four main ideas which make the difference with other solution are: 1. all dependencies are not exploded in final archive, 'jar' file stay without any modification, so manifest also... 2. use our maven plugin to package all that you need (and we'll loading dependencies automatically for you) 3. you could load native library 4. you could restart your application Why named Keystone? 1. Stone wedge-shaped arch which maintains a vault [Architecture]. 2. A central element on which everything depends.

Group: org.intelligents-ia Artifact: keystone
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact keystone
Group org.intelligents-ia
Version 3.3
Last update 19. August 2014
Organization Intelligents-ia
URL https://github.com/geronimo-iia/keystone
License The Apache Software License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!



Page 230 from 245 (items total 2448)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy