Download JAR files tagged by views with all dependencies
quark-parent from group com.qubole (version 6.0.3)
Quark (/ˈkwɔrk/ or /ˈkwɑrk/) is a federation layer over the databases in a analytics stack.
It provides a federated schema that maps tables in multiple database systems. With the help
of the federated schema, Quark makes it possible to define and use materialized views,
olap cubes and other relationships between tables stored in different databases. Quark
comes with a simple execution layer that redirects queries to use materialized views or
cubes. Quark is distributed as a JDBC jar and will work with most tools that integrate
through JDBC.
Group: com.qubole Artifact: quark-parent
Show all versions
Show all versions
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact quark-parent
Group com.qubole
Version 6.0.3
Last update 13. July 2017
Organization not specified
URL https://github.com/qubole/quark
License Apache License, Version 2.0
Dependencies amount 1
Dependencies slf4j-api,
There are maybe transitive dependencies!
Group com.qubole
Version 6.0.3
Last update 13. July 2017
Organization not specified
URL https://github.com/qubole/quark
License Apache License, Version 2.0
Dependencies amount 1
Dependencies slf4j-api,
There are maybe transitive dependencies!
quark-fat-jdbc from group com.qubole (version 6.0.3)
0 downloads
Artifact quark-fat-jdbc
Group com.qubole
Version 6.0.3
Last update 13. July 2017
Organization not specified
URL Not specified
License not specified
Dependencies amount 12
Dependencies jackson-core, jackson-databind, jackson-annotations, avatica, guava, quark-optimizer, quark-plugins, quark-catalog, quark-ee, logback-core, logback-classic, jcl-over-slf4j,
There are maybe transitive dependencies!
Group com.qubole
Version 6.0.3
Last update 13. July 2017
Organization not specified
URL Not specified
License not specified
Dependencies amount 12
Dependencies jackson-core, jackson-databind, jackson-annotations, avatica, guava, quark-optimizer, quark-plugins, quark-catalog, quark-ee, logback-core, logback-classic, jcl-over-slf4j,
There are maybe transitive dependencies!
jfire-mvc from group link.jfire (version 1.0.3)
Jfire - MVC MVC framework is a fast and efficient. Support the rest style urls. Transparent simple file upload, data binding function to access web parameters become very easy. Supports multiple views at the same time. Includes regular HTML, json, templates, etc
Artifact jfire-mvc
Group link.jfire
Version 1.0.3
Last update 04. February 2016
Organization not specified
URL www.jfire.link
License The Apache Software License, Version 2.0
Dependencies amount 2
Dependencies jfire-core, beetl,
There are maybe transitive dependencies!
Group link.jfire
Version 1.0.3
Last update 04. February 2016
Organization not specified
URL www.jfire.link
License The Apache Software License, Version 2.0
Dependencies amount 2
Dependencies jfire-core, beetl,
There are maybe transitive dependencies!
android-shape-imageview from group com.github.siyamed (version 0.9.3)
Provides a set of custom shaped android imageview components, and a framework to define more shapes. Implements both shader and bitmap mask based image views. Shader based one uses canvas draw methods and Path construct, Mask based one uses xfermode to draw image on bitmaps defined by android shape XML's or resource bitmaps.
Group: com.github.siyamed Artifact: android-shape-imageview
Show all versions Show documentation
Show all versions Show documentation
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact android-shape-imageview
Group com.github.siyamed
Version 0.9.3
Last update 12. October 2015
Organization not specified
URL https://github.com/siyamed/android-shape-imageview
License The Apache Software License, Version 2.0
Dependencies amount 1
Dependencies kxml2,
There are maybe transitive dependencies!
Group com.github.siyamed
Version 0.9.3
Last update 12. October 2015
Organization not specified
URL https://github.com/siyamed/android-shape-imageview
License The Apache Software License, Version 2.0
Dependencies amount 1
Dependencies kxml2,
There are maybe transitive dependencies!
library from group com.github.hwrdprkns.tileview (version 1.0.14)
The TileView widget is a subclass of ViewGroup that provides a mechanism to asynchronously display tile-based images, with additional functionality for 2D dragging, flinging, pinch or double-tap to zoom, adding overlaying Views (markers), built-in Hot Spot support, dynamic path drawing, multiple levels of detail, and support for any relative positioning or coordinate system.
Group: com.github.hwrdprkns.tileview Artifact: library
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact library
Group com.github.hwrdprkns.tileview
Version 1.0.14
Last update 18. December 2014
Organization not specified
URL https://github.com/hwrdprkns/TileView
License The MIT License (MIT) Copyright (c) 2013
Dependencies amount 2
Dependencies support-v4, disklrucache,
There are maybe transitive dependencies!
Group com.github.hwrdprkns.tileview
Version 1.0.14
Last update 18. December 2014
Organization not specified
URL https://github.com/hwrdprkns/TileView
License The MIT License (MIT) Copyright (c) 2013
Dependencies amount 2
Dependencies support-v4, disklrucache,
There are maybe transitive dependencies!
tileview from group com.github.hwrdprkns (version 1.0.14)
The TileView widget is a subclass of ViewGroup that provides a mechanism to asynchronously display tile-based images, with additional functionality for 2D dragging, flinging, pinch or double-tap to zoom, adding overlaying Views (markers), built-in Hot Spot support, dynamic path drawing, multiple levels of detail, and support for any relative positioning or coordinate system.
Group: com.github.hwrdprkns Artifact: tileview
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact tileview
Group com.github.hwrdprkns
Version 1.0.14
Last update 17. December 2014
Organization not specified
URL https://github.com/hwrdprkns/TileView
License The MIT License (MIT) Copyright (c) 2013
Dependencies amount 2
Dependencies support-v4, disklrucache,
There are maybe transitive dependencies!
Group com.github.hwrdprkns
Version 1.0.14
Last update 17. December 2014
Organization not specified
URL https://github.com/hwrdprkns/TileView
License The MIT License (MIT) Copyright (c) 2013
Dependencies amount 2
Dependencies support-v4, disklrucache,
There are maybe transitive dependencies!
T4Spring from group org.bitbucket.omargameelsalem (version 1.0)
T4Spring is a code generation tool for Spring MVC apps that creates strongly typed views that eliminate the use of literal strings in many places.
e.g. instead of
@RequestMapping(value = "/", method = RequestMethod.GET)
public String index(ModelMap map)
{
map.addAttribute("msg", "literal strings are no good!!");
return "Home/index";
}
T4Spring lets you write
@RequestMapping(value = "/", method = RequestMethod.GET)
public String index(ModelMap map)
{
map.addAttribute("msg", "Hello T4Spring!!");
return Views.Home.index;
}
Artifact T4Spring
Group org.bitbucket.omargameelsalem
Version 1.0
Last update 01. September 2014
Organization not specified
URL https://bitbucket.org/omar_gameel_salem/t4spring/overview
License MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.bitbucket.omargameelsalem
Version 1.0
Last update 01. September 2014
Organization not specified
URL https://bitbucket.org/omar_gameel_salem/t4spring/overview
License MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
apacheds-bulkloader from group org.apache.directory.server (version 2.0.0-M17)
1 downloads
Artifact apacheds-bulkloader
Group org.apache.directory.server
Version 2.0.0-M17
Last update 30. June 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
Group org.apache.directory.server
Version 2.0.0-M17
Last update 30. June 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!
org.liveSense.framework.apacheds from group com.github.livesense (version 1.0.5)
ApacheDS is an embbedable directory server entirely written in Java, which has been certified LDAPv3 compatible
by the Open Group. Besides LDAP it supports Kerberos 5 and the Change Password Protocol. It has been designed to introduce
triggers, stored procedures, queues and views to the world of LDAP which has lacked these rich constructs.
0 downloads
Artifact org.liveSense.framework.apacheds
Group com.github.livesense
Version 1.0.5
Last update 01. June 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 55
Dependencies api-i18n, api-asn1-api, api-asn1-ber, api-ldap-client-api, api-ldap-codec-core, api-ldap-codec-standalone, api-ldap-net-mina, api-ldap-extras-aci, api-ldap-extras-codec, api-ldap-extras-codec-api, api-ldap-extras-sp, api-ldap-extras-trigger, api-ldap-extras-util, api-ldap-model, api-ldap-schema-data, api-util, apacheds-core, apacheds-core-api, apacheds-core-jndi, apacheds-server-config, apacheds-core-shared, apacheds-jdbm2, apacheds-core-constants, apacheds-core-avl, apacheds-i18n, apacheds-protocol-shared, apacheds-jdbm-partition, apacheds-server-jndi, apacheds-protocol-ntp, apacheds-protocol-dns, apacheds-protocol-dhcp, apacheds-protocol-kerberos, apacheds-protocol-ldap, apacheds-kerberos-codec, apacheds-interceptor-kerberos, apacheds-interceptors-admin, apacheds-interceptors-authn, apacheds-interceptors-authz, apacheds-interceptors-changelog, apacheds-interceptors-collective, apacheds-interceptors-event, apacheds-interceptors-exception, apacheds-interceptors-journal, apacheds-interceptors-normalization, apacheds-interceptors-operational, apacheds-interceptors-referral, apacheds-interceptors-schema, apacheds-interceptors-subtree, apacheds-interceptors-trigger, apacheds-interceptors-hash, apacheds-xdbm-partition, apacheds-ldif-partition, apacheds-http-integration, apacheds-http-directory-bridge, apacheds-service-builder,
There are maybe transitive dependencies!
Group com.github.livesense
Version 1.0.5
Last update 01. June 2014
Organization not specified
URL Not specified
License not specified
Dependencies amount 55
Dependencies api-i18n, api-asn1-api, api-asn1-ber, api-ldap-client-api, api-ldap-codec-core, api-ldap-codec-standalone, api-ldap-net-mina, api-ldap-extras-aci, api-ldap-extras-codec, api-ldap-extras-codec-api, api-ldap-extras-sp, api-ldap-extras-trigger, api-ldap-extras-util, api-ldap-model, api-ldap-schema-data, api-util, apacheds-core, apacheds-core-api, apacheds-core-jndi, apacheds-server-config, apacheds-core-shared, apacheds-jdbm2, apacheds-core-constants, apacheds-core-avl, apacheds-i18n, apacheds-protocol-shared, apacheds-jdbm-partition, apacheds-server-jndi, apacheds-protocol-ntp, apacheds-protocol-dns, apacheds-protocol-dhcp, apacheds-protocol-kerberos, apacheds-protocol-ldap, apacheds-kerberos-codec, apacheds-interceptor-kerberos, apacheds-interceptors-admin, apacheds-interceptors-authn, apacheds-interceptors-authz, apacheds-interceptors-changelog, apacheds-interceptors-collective, apacheds-interceptors-event, apacheds-interceptors-exception, apacheds-interceptors-journal, apacheds-interceptors-normalization, apacheds-interceptors-operational, apacheds-interceptors-referral, apacheds-interceptors-schema, apacheds-interceptors-subtree, apacheds-interceptors-trigger, apacheds-interceptors-hash, apacheds-xdbm-partition, apacheds-ldif-partition, apacheds-http-integration, apacheds-http-directory-bridge, apacheds-service-builder,
There are maybe transitive dependencies!
TileView from group com.qozix (version 1.0.11)
The TileView widget is a subclass of ViewGroup that provides a mechanism to asynchronously display tile-based images, with additional functionality for 2D dragging, flinging, pinch or double-tap to zoom, adding overlaying Views (markers), built-in Hot Spot support, dynamic path drawing, multiple levels of detail, and support for any relative positioning or coordinate system.
Artifact TileView
Group com.qozix
Version 1.0.11
Last update 06. April 2014
Organization not specified
URL http://qozix.com
License The MIT License (MIT)
Dependencies amount 2
Dependencies disklrucache, support-v4,
There are maybe transitive dependencies!
Group com.qozix
Version 1.0.11
Last update 06. April 2014
Organization not specified
URL http://qozix.com
License The MIT License (MIT)
Dependencies amount 2
Dependencies disklrucache, support-v4,
There are maybe transitive dependencies!
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
Page 58 from 59 (items total 582)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy