Skip to content

Instantly share code, notes, and snippets.

View lcriadof's full-sized avatar

LUIS CRIADO FERNANDEZ lcriadof

View GitHub Profile
@lcriadof
lcriadof / gist:41be81e34f0d37069d02ceee4422f110
Created January 20, 2022 19:12
ejemplo de fichero settings.xml para publicar en MAVEN CENTRAL
Este fichero es un ejemplo para publicar en MAVEN CENTRAL
<?xml version="1.0" encoding="UTF-8"?>
<!-- Este fichero contiene acceso y claves, es un fichero que no se puede subir a ningún repositorio, solo es para publicar en MAVEN CENTRAL -->
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>ossrh</id>
@lcriadof
lcriadof / gist:c7dbb1bf24953d4c88da5eb37c784112
Created January 20, 2022 19:07
plugin necesarios para publicar en MAVEN CENTRAL
<!-- plugin necesarios para publicar en MAVEN CENTRAL-->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
@lcriadof
lcriadof / gist:c8f388745c0f8ea4fb7108351ef91b3b
Created August 3, 2016 09:21
Validaciones OK de tarjetas sin contactos en un rango temporal, asociado a sus coordenadas cuando existe el dato
PREFIX dpay: <http://datos.crtm.es/recurso/transporte/validacion/dpaypoint/>
PREFIX gsp: <http://www.opengis.net/ont/geosparql#>
PREFIX ttp: <http://vocab.linkeddata.es/datosabiertos/def/transporte/tarjeta-transporte-publico#>
PREFIX validacionInstancia: <http://crtm.linkeddata.es/recurso/transporte/validacion/>
PREFIX ssn: <http://purl.oclc.org/NET/ssnx/ssn>
SELECT DISTINCT ?hashTarjeta ?title ?perfil ?FechaYhora ?dPayPoint ?coordenadas
FROM NAMED <http://crtm.linkeddata.es/graph/data/validaciones>
FROM NAMED <http://crtm.linkeddata.es/graph/data/dpaypoints>
@lcriadof
lcriadof / gist:80156e159d509bddd7bccb35a16faef2
Created August 3, 2016 09:19
dPayPoint con coordenadas
PREFIX dpay: <http://datos.crtm.es/recurso/transporte/validacion/dpaypoint/>
PREFIX gsp: <http://www.opengis.net/ont/geosparql#>
PREFIX ttp: <http://vocab.linkeddata.es/datosabiertos/def/transporte/tarjeta-transporte-publico#>
PREFIX validacionInstancia: <http://crtm.linkeddata.es/recurso/transporte/validacion/>
PREFIX ssn: <http://purl.oclc.org/NET/ssnx/ssn>
SELECT DISTINCT ?dPayPoint ?geometry
FROM NAMED <http://crtm.linkeddata.es/graph/data/validaciones>
FROM NAMED <http://crtm.linkeddata.es/graph/data/dpaypoints>
WHERE {
@lcriadof
lcriadof / gist:4a8be943447c477d8fd6a24308b59311
Created August 3, 2016 09:17
Validaciones OK de tarjetas sin contactos en un rango temporal.
Plantilla utilizada en topología: dPayPoint_v6.plantilla
Plantilla utilizada en validación: validacionEntrada_v8.plantilla
Fecha de última actualización de este documento: 2 agosto 2016
PREFIX dpay: <http://datos.crtm.es/recurso/transporte/validacion/dpaypoint/>
PREFIX gsp: <http://www.opengis.net/ont/geosparql#>
PREFIX ttp: <http://vocab.linkeddata.es/datosabiertos/def/transporte/tarjeta-transporte-publico#>
PREFIX validacionInstancia: <http://crtm.linkeddata.es/recurso/transporte/validacion/>
PREFIX ssn: <http://purl.oclc.org/NET/ssnx/ssn>