Skip to content

Instantly share code, notes, and snippets.

View SeunMatt's full-sized avatar

Seun Matt SeunMatt

View GitHub Profile
stages:
- build
- deploy
maven-build:
image: maven:3-jdk-8
stage: build
script: "mvn package -B"
artifacts:
paths:
@SeunMatt
SeunMatt / default.conf
Created March 21, 2019 15:26
A sample configuration file for nginx proxy server for Apache Tomcat
server_name app.ployref.com www.app.ployref.com;
# serve static files
location ^~ /assets/ {
root /opt/tomcat/webapps/ROOT/WEB-INF/classes/public;
expires 30d;
access_log off;
}
location / {
SQL SERVER-SIDE PAGINATION
==========================
```php
$realOffset = 0;
if(!is_null($limit) && $offset > 0) {
$realOffset = $offset * $limit;
}
@SeunMatt
SeunMatt / settings.xml
Created November 4, 2018 13:47
This is a sample settings.xml file for deploying a Java library to OSSRH
<settings>
<servers>
<server>
<id>ossrh</id>
<username>jira-username</username>
<password>jira-password</password>
</server>
</servers>
<profiles>
<profile>